I need to write a redirection order to fix many broken URL requests. The only change required is to convert any upper case alphabetic characters in the
{path} and
{query} to lower case characters. For example, the
From URL is of the form:
http://www.mysite.com/Some-Section-Name/nnn-Some-Category-Name.html
where nnn is numeric.
The converted
To URL will be just the lower-case equivalent:
http://www.mysite.com/some-section-name/nnn-some-category-name.html
How can I use regular expressions or some other method to convert an incoming URL with one or more upper case letters to a URL with only lower-case letters? Is it possible to write the redirection order to ignore correctly-formed URLs with all alphabetic characters in lower case?
ReDJ Version 1.5.3 Community