# HG changeset patch # User Tomas Zeman # Date 1307435349 -7200 # Node ID da454bf1bf63beed9a54d032c17eec65e1a29a1c # Parent 53c01c16b1cb4f9ba7b5923f30054641f196dcf9 lighttpd/gpeasy: proper rewrite for query params diff -r 53c01c16b1cb -r da454bf1bf63 lighttpd/gpeasy --- a/lighttpd/gpeasy Mon May 30 16:21:31 2011 +0200 +++ b/lighttpd/gpeasy Tue Jun 07 10:29:09 2011 +0200 @@ -1,7 +1,8 @@ Rewrite rules for gpeasy: url.rewrite-if-not-file = ( - "^(.+)$" => "/index.php?$1" + "^/([^.?]*)\?(.*)$" => "/index.php?$1&$2", + "^/([^.?]*)$" => "/index.php?$1", ) Based on following article: configuring w/ nginx: