Re: [users] Case Insensitive URL

2014-06-13 Thread Pankaj Singh
You can use the following code in your .htaccess file; RewriteEngine on RewriteMap lower int:tolower RewriteCond ${lower:%{REQUEST_URI}} -U RewriteRule [A-Z] ${lower:%{REQUEST_URI}} [R=302,L] On Fri, Jun 13, 2014 at 6:33 AM, P. Guethlein pet...@deltronix.com wrote: Ubuntu 12.04 LTS Apache

[users] Case Insensitive URL

2014-06-12 Thread P. Guethlein
Ubuntu 12.04 LTS Apache 2.2.22 I need to add case insensitive URL's to my server. http://www.example.com/PUBLIC/Something.html is the same as http://www.example.com/public/something.html If the html calls an image with the html code, I need that url also to be case insensitive. Can't