Skip to content

Instantly share code, notes, and snippets.

@svetlyak40wt
Created October 16, 2008 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svetlyak40wt/17208 to your computer and use it in GitHub Desktop.
Save svetlyak40wt/17208 to your computer and use it in GitHub Desktop.
working url rewrite for drupal under lighttpd
# working url rewrite for drupal under lighttpd
# taken from http://drupal.org/node/20766#comment-44462
url.rewrite-final = (
"^/system/test/(.*)$" => "/index.php?q=system/test/$1",
"^/([^.?]*)\?(.*)$" => "/index.php?q=$1&$2",
"^/([^.?]*)$" => "/index.php?q=$1"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment