I am trying to 301 direct any links that have capital letters. I am using Helicon ISAPI_Rewrite3. I've searched about the topic and ended up having these three lines in my .htaccess file:
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule ^/(.*)$ /${lc:$1} [R=301,L]
One link said that the first line shouldn't be on the .htaccess. I've tried moving it to the httpd.conf file, but no change.
I still can't get it to redirect to the link with the lowercase. I want this link: [
mysite...] to be directed to [
mysite...]
Not only that. I want to make sure that it indeed directed. I used this link to verify the status of a link: [
seoconsultants.com...]
I am following the steps that the comment #15 mentioned in this link:
[
chrisabernethy.com...]
What did I miss?
Please help,
thank you!