LiteSpeed and vBSEO

#1
As you might know vBSEO is a very popular plugin for vBulletin forums. And sure his rewrite code is not compatible with LiteSpeed. I'd like to know how can i fix it? Here is .httaccess file:

RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.*)$ $1 [L]

RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !chat
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

RewriteRule ^$ vbseo.php?vbseourl=index.php [L]
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
Thanks.
 

mistwang

LiteSpeed Staff
#2
Those rewrite rules are suppose to work exactly as they were with Apache.
Please give me a example, what is the input URL, what is the rewriten URL exepected? If it is a rewrite engine compatibility issue, we will fix it.

Another thing could help is to enable rewrite logging, then check error.log to get an idea what exactly is broken. It will help us identify the problem as well. :)
 
Top