I want to migrate some sites running on apache to Lighttpd.
Can anyone help me to convert this Rewrite rule into a equivalent rule for Lighttpd:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
I'm reading the Lighttpd rewrite explanation (http://redmine.lighttpd.net/wiki/1/Docs%3AModRewrite) but I didn't understand how convert this specific rule.
Thanks a lot