From 48c7227bc81b0b1f3b48869a1b6c801aefa5f3f6 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 5 Jan 2016 07:42:20 +0100 Subject: [PATCH] fix lighttpd rewrite to support GET parameters --- data/lighttpd-rewrite.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ) -- 2.30.2