[solved] vBSEO Configuration

#1
Hello,
I can't use vBSEO in my vbulletin because htaccess of vBSEO isn't working.
What should I do to make htaccess attached work in my LiteSpeed server?

Thanks,
franciscol99
 

Attachments

Last edited by a moderator:

NiteWave

Administrator
#4
so please check:
lsws admin console -> Configuration -> Server -> HT Access -> Allow Override

and similar setting in your vhost -> general -> HT Access -> Allow Override

uncheck None, and check all others, then restart lsws
 

NiteWave

Administrator
#9
solved -- the .htaccess file format error, lines not break correctly.
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$
vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond
%{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond
%{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond
%{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
change to
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
fixed it

p.s. it's running latest 4.1.12
 
Top