fix lighttpd rewrite to support GET parameters
authorChristian Weiske <cweiske@cweiske.de>
Tue, 5 Jan 2016 06:42:20 +0000 (07:42 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Tue, 5 Jan 2016 06:42:20 +0000 (07:42 +0100)
data/lighttpd-rewrite.conf

index 2f15bba9f09177b8aa2a376d651409250f05aa53..47cdae002ba0c1dd781c6c883c41c4613de0144c 100644 (file)
@@ -1,4 +1,4 @@
 # include this into your lighttpd host configuration
 url.rewrite-if-not-file = (
 # include this into your lighttpd host configuration
 url.rewrite-if-not-file = (
-    ".*" => "index.php"
+    "^(.*)$" => "index.php/$1"
 )
 )