Forum Moderators: phranque
I have this in my .htaccess:
RewriteCond %{HTTP_HOST} (www\.)?web(.*).com$
RewriteCond /home/www/%2 -d
RewriteRule (.*)$ %2/index.php [L,QSA]
works fine on IE and firefox, but Lynx doesn't transform URL with caps to small letters.
so, can I transform all caps to small letters with something like this?
s/[A-Z]/[a-z]/g
but where do I put it?
Cheers
Lars