techcone Posted April 5, 2009 Share Posted April 5, 2009 Can someone give me code of htaccess to do this http://example.com/Hello.html i want to change it to http://example.com/hello.html Thanks Quote Link to comment Share on other sites More sharing options...
Mark Baker Posted April 5, 2009 Share Posted April 5, 2009 RewriteEngine On RewriteMap lc int:tolower RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} [R=301,L] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.