I want if someone type the url like this
then it will be redirected to http://sim.com/contact
I want if someone type the url like this
then it will be redirected to http://sim.com/contact
First add this line in <VirtualHost>
section OR at the end of your httpd.conf file:
RewriteMap lc int:tolower
Then have this rule in your .htaccess
file:
RewriteEngine on
RewriteRule ^(.*?[A-Z].*)$ /${lc:$1} [R=301,L]