View Single Post
  #4  
Old 02-07-2012, 12:19 PM
webizen webizen is offline
LiteSpeed Staff
 
Join Date: Oct 2010
Posts: 2,337
here is a possible workaround:

define RewriteMap in httpd.conf like this:
RewriteMap lowercase int:tolower

put the rule in httpd.conf:
RewriteRule ^/(.*)$ /${lowercase:$1} [L]

or in .htaccess
RewriteRule ^(.*)$ /${lowercase:$1} [L]
Reply With Quote