From a76926b2c49d736aab0211bc643b7f1b4a113b51 Mon Sep 17 00:00:00 2001 From: David Drapeau Date: Mon, 30 Nov 2020 16:52:59 +0100 Subject: [PATCH] [FIX] proxy.php was not in .htaccess --- .htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.htaccess b/.htaccess index da6ed0d..def37ab 100644 --- a/.htaccess +++ b/.htaccess @@ -7,4 +7,7 @@ RewriteCond %{REQUEST_URI} !index.php #RewriteRule ^install$ custom/__private/install/install.php [L] RewriteRule ^([a-z\-]+)-([0-9\.]+)$ index.php?page=$1&reference=$2 [L] +RewriteCond %{QUERY_STRING} ^([a-zA-Z0-9\-_=&;]+)$ +RewriteRule ^([a-z\-]+)$ index.php?page=$1&%1 [L] RewriteRule ^([a-z\-]+)$ index.php?page=$1 [L] +RewriteRule /.? proxy.php [L] \ No newline at end of file