XenForo SEO Friendly URL with Lighttpd

Marks-Man

Loyal Member
Using friendly SEO URLs with lighttpd add the following to url rewrite your configuration:

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:

isoohub

Registered
Using friendly SEO URLs with lighttpd add the following to url rewrite your configuration:

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.
es
 
Back
Top Bottom