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 wrote:
> Ubuntu 12.04 LTS Apache 2.2.22
>
> I need to
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 seem