View Single Post
  #2  
Old 02-06-2012, 10:25 PM
NiteWave NiteWave is offline
LiteSpeed Staff
 
Join Date: Sep 2009
Posts: 2,226
for particular URL, you can do it in .htaccess:

RewriteRule aBc.html abc.html [NC]

[NC] mean "no case"

so ABC.html, AbC.html etc all accessible.

or
RewriteRule aBc.html abc.html [NC,R]

all redirect to abc.html, to let user know the correct case.
Reply With Quote