vBulletin Script Problems

#1
I would like to change to Litespeed from Apache with mod_php
I installed it on a testserver.

The forum works fine.
But I'm using a script which rewrites the forum into .html sites.
The main page works but when i click a link i get a 404 error

In the error log I find entries like this
[ERROR] [18257] [123.60.100.100:35232] URI '/archiv/forum/425-2.html' refers to a static file with PATH_INFO [/425-2.html].

My htaccess is:
AcceptPathInfo On
<Files topic>
ForceType application/x-httpd-php
</Files>
<Files forum>
ForceType application/x-httpd-php
</Files>

Is there a possibility to get it work on Litespeed?
 
#7
The file is and was already located in that folder.
I changed the htaccess to


AcceptPathInfo On
<Files topic>
AddType application/x-httpd-php html
</Files>
<Files forum>
AddType application/x-httpd-php html
</Files>


and it still doesn`t work.

Any further ideas?

I hope :)
 
Top