lighttpd rewrite rules
Sorry there was something wrong with this configuration. The static files didn't load.
Finaly i got this working configuration.
replace url.rewrite with:
url.rewrite-final = (
"^/(scripts|styles|images)/(.*)$" => "/$1/$2",
"^/(.*)$" => "/index.php?__route__=$1"
)
the scripts|styles|images are your static files folders.
Posted September 16th, 2007 at 5:13am by delooks
For those who search for the rewrite rules with lighttpd:
Activate server module mod_rewrite
Set the error-handler to index.php
Then rewrite
Posted September 16th, 2007 at 4:32am by delooks