For vbseo i need to enable the mod rewrite which i have accomplished
but it also rewrites everything including when the shoutbox is used so shout doesnt work is there a way to exclude shout
thats the code i have to add to lighttpd.conf
but it also rewrites everything including when the shoutbox is used so shout doesnt work is there a way to exclude shout
Code:
$HTTP["host"] == "awarez.org" {
server.document-root = "/home/admin/awarez.org/"
url.rewrite-once = (
"^/(sitemap.*\.(xml|txt)(\.gz)?)$" => "/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1",
"^(/(admincp|modcp|clientscript|cpstyles|images|customavatars)/.*)$" => "$1",
"^(/favicon\.ico|/robots\.txt|.*clear\.gif)$" => "$1",
"^/(.+)\?(.*)$" => "/vbseo.php?$2",
"^/(.+)$" => "/vbseo.php"
)
}