Works in Apache but not in litespeed

#1
Hello,

A customer of ours has the following in a .htaccess

Code:
Action tt2 /cgi/tt_handler.pl
AddHandler tt2 .htm
AddHandler tt2 .html
However it does not parse in litespeed could someone give us the correct directives for litspeed

Thanks
 

mistwang

LiteSpeed Staff
#2
It does not work LSWS now, you can change it to use rewrite for the same result like

Rewrite ^(.*\.(htm|html))$ /cgi/tt_handler.pl/$1
 
Top