Hi There
I want to rewrite all uppercase/mixed case URLs to lowercase using the following rewrite rule:
RewriteRule ^([^A]*)A(.*)$ /$1a$2
Problem is, I will have to do this rewrite rule for each letter of the alphabet...
Is there not a way I can use regular expression to match for uppercase and lower case? for example:
RewriteRule ^([^A-Z]*)[A-Z](.*)$ /$1[a-z]$2
Thanks
Sadie