From: Christian Weiske Date: Tue, 5 Jan 2016 06:42:20 +0000 (+0100) Subject: fix lighttpd rewrite to support GET parameters X-Git-Url: https://git.cweiske.de/noxon-gateway.git/commitdiff_plain/48c7227bc81b0b1f3b48869a1b6c801aefa5f3f6 fix lighttpd rewrite to support GET parameters --- diff --git a/data/lighttpd-rewrite.conf b/data/lighttpd-rewrite.conf index 2f15bba..47cdae0 100644 --- a/data/lighttpd-rewrite.conf +++ b/data/lighttpd-rewrite.conf @@ -1,4 +1,4 @@ # include this into your lighttpd host configuration url.rewrite-if-not-file = ( - ".*" => "index.php" + "^(.*)$" => "index.php/$1" )