Como converter regras RewriteCond para que funcionem no Lighttpd?

Como converter regras RewriteCond para que funcionem no Lighttpd?

Como posso converter essas regras de reescrita do Apache para que funcionem no Lighttpd? Na verdade, este é um arquivo .htaccess e preciso colocá-lo em um arquivo lighttpd.conf.

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule www.(.*) web.php?url=$1
RewriteRule sitemap/(.*) mapdi.php?page=$1
RewriteRule tags_(.*)\.html$ tags.php?keywords=$1
RewriteRule ^([^-]*)-page-([^-]*)\.html$ tags.php?keywords=$1&page=$2 [L]
RewriteRule ^sitemap_([^-]*)\.html$ sitemap_web.php?page=$1 [L]
RewriteRule ^sitemap\.html$ sitemap.php$1 [L]
RewriteRule ^privacy\.html$ privacy.php$1 [L]

Converti parte do código, mas não tenho certeza de como posso converter:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.*)/$

.... ....

Aqui está o que eu poderia converter:

url.rewrite-once = (

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} !(.*)/$

    "www.(.*)" => "web.php?url=$1",
    "sitemap/(.*)" => "mapdi.php?page=$1",
    "tags_(.*)\.html$" => "tags.php?keywords=$1",
    "^([^-]*)-page-([^-]*)\.html$" => "tags.php?keywords=$1&page=$2",
    "^sitemap_([^-]*)\.html$" => "sitemap_web.php?page=$1",
    "^sitemap\.html$" => "sitemap.php$1",
    "^privacy\.html$" => "privacy.php$1"
)

informação relacionada