¿Cómo convertir las reglas de RewriteCond para que funcionen en Lighttpd?

¿Cómo convertir las reglas de RewriteCond para que funcionen en Lighttpd?

¿Cómo puedo convertir estas reglas de reescritura de Apache para que funcionen en Lighttpd? De hecho, este es un archivo .htaccess y necesito colocarlo en un archivo 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]

Convertí una parte del código, pero no estoy seguro de cómo puedo convertirlo:

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

.... ....

Esto es lo que podría convertir:

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"
)

información relacionada