Created
August 21, 2012 13:35
-
-
Save HKLF4/3415463 to your computer and use it in GitHub Desktop.
esoTalk: Lighttpd rewrite rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://example.org | |
$HTTP["host"] == "example.org" { | |
url.rewrite-if-not-file = ( "^/([^.]+)$" => "/index.php/$1" ) | |
} | |
#http://example.org/forum | |
$HTTP["host"] == "example.org" { | |
url.rewrite-if-not-file = ( "^/forum/([^.]+)$" => "forum/index.php/$1" ) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment