From e3a64360312e91dacdf6376007ee03d198ae54e0 Mon Sep 17 00:00:00 2001 From: Jacob Peck Date: Mon, 18 Nov 2019 08:13:51 -0500 Subject: [PATCH] Fix rewrite rule for lighttpd config (#2721) Just plain doesn't work without this! Was probably omitted in error. --- webserver-configs/lighttpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webserver-configs/lighttpd.conf b/webserver-configs/lighttpd.conf index 4d79dd568..1c2bba1a5 100644 --- a/webserver-configs/lighttpd.conf +++ b/webserver-configs/lighttpd.conf @@ -23,7 +23,7 @@ $HTTP["querystring"] =~ "_REQUEST(=|\[|\%[0-9A-Z])" { #REROUTING TO THE INDEX PAGE url.rewrite-if-not-file = ( - "^/grav_path/(.*)$" => "/grav_path/index.php$1" + "^/grav_path/(.*)$" => "/grav_path/index.php?$1" ) #IMPROVING SECURITY