mod_speling

#1
Does litespeed have support for mod_speling or does it have any alternative. Please point me to a tutorial if there is any.

Thanks
Sandeep
 

DanEZPZ

Well-Known Member
#3
Sorry to bump an old thread, but is there any plans to add this? If not, anyone know of a way around capitalisation issues?
 

MikeDVB

Well-Known Member
#4
Sorry to bump an old thread, but is there any plans to add this? If not, anyone know of a way around capitalisation issues?
I've given you mod_rewrite code that will fix the issue for your one client - and you can use it for other such similar situations.

If you need further help let me know.

Code:
RewriteEngine On
RewriteRule ^dsc(.*) DSC$1 [L]
 
Top