Hi All,
I am a new bee for this forum. I have CMS site which is hosted in apache server. The site contains the URLs as upper and lower case mixed. I would like to convert all the HTML page urls in to lower case only (PDFs and Image URLs should not be converted). I have used the following rule to convert the URLs
RewriteEngine On
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]
which was working fine but converting all the URLs including PDF, Images and other files too. I have modified as follows
RewriteEngine On
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.html) ${lc:$1} [R=301,L]
which is not working.
Kindly help me to find the solution for this issue.