Marks-Man
Loyal Member
- Thread starter
- #1
Using friendly SEO URLs with lighttpd add the following to url rewrite your configuration:
Also make sure to load the mod_rewrite module.
PHP:
url.rewrite-if-not-file = (
"^/(data|install|internal_data|js|library|styles)/(.*)$" => "$0",
"^/(.*\.php)(.*)$" => "$0",
"^/.*(\?.*)" => "/index.php$1",
"" => "/index.php"
)
Also make sure to load the mod_rewrite module.
Last edited: