If you want to make Bramus Router work with Lighttpd, add these lines to your lighttpd.conf. ... server.modules += ( "mod_rewrite" ) ... url.rewrite-if-not-file = ( "^/myproject/(.*)" => "/myproject/index.php/$1" ) ...
If you want to make Bramus Router work with Lighttpd, add these lines to your lighttpd.conf.
...
server.modules += ( "mod_rewrite" )
...
url.rewrite-if-not-file = (
"^/myproject/(.*)" => "/myproject/index.php/$1"
)
...