skip to Main Content

Apache mod_rewrite to lighttpd

I'm trying to transfer a PHP project from apache to lighttpd. I have the following rewrite in the apache: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule !.(js|ico|gif|jpg|jpeg|png|css|ttf)$ /index.php?_url=/$1 [QSA,L] I can't manage to translate it to lighttpd mod_rewrite.…

VIEW QUESTION
Back To Top
Search