problem vbseo on lighttpd server

vixio_dv

New Member
please help me, before i have apache server and nothing problem with vbseo
but now i host on lighttpd server
if vbseo active
i get 404 Not Found

Code:
#RewriteCond %{HTTP_HOST} !^www\.sxleton-warrior\.org
#RewriteRule (.*) http://www.sxleton-warrior.org/en/$1 [L,R=301]

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

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

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

please convert to lighttpd rewrite rules
 

Grinderhand

New Member
This is the file for that server type that is contained in the archive:

Code:
$HTTP["host"] == "yourdomain.com" {
server.document-root = "/path/to/your/public_html/"
url.rewrite-once = (
"^/forums/(sitemap.*\.(xml|txt)(\.gz)?)$" => "/forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1",
"^(/forums/(admincp|modcp|clientscript|cpstyles|images|customavatars)/.*)$" => "$1",
"^(/favicon\.ico|/robots\.txt|.*clear\.gif)$" => "$1",
"^/forums/(.+)\?(.*)$" => "/forums/vbseo.php?$2",
"^/forums/(.+)$" => "/forums/vbseo.php"
)
}
 

vixio_dv

New Member
yes sure i finish configure all, and put on .httacces but still not working
and i try put on Lighttpd Rewrite Rules still not working to :(
 
Top