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 Link to comment https://forums.phpfreaks.com/topic/152640-htaccess-code/ 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] Link to comment https://forums.phpfreaks.com/topic/152640-htaccess-code/#findComment-801616 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.