Marks-Man
Administrator
Using friendly SEO URLs with lighttpd add the following to url rewrite your configuration:
Also make sure to load the mod_rewrite module.
Continue reading...
url.rewrite = (
"^/(data|install|internal_data|js|library|styles)/(.*)$" => "$0",
"^/(.*\.php)(.*)$" => "$0",
"^/.*(\?.*)" => "/index.php$1",
"" => "/index.php"
)
Click to expand...
Also make sure to load the mod_rewrite module.
Continue reading...