From 4d48a97b9734e9601c5f0afc6451f9e7960e6d19 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 29 Mar 2010 21:03:19 -0400 Subject: [PATCH] .htaccess: Do not use [QSA] on the RewriteRule. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The QSA flag is for appending the user’s query string to a given query string. Here there is no given query string. Signed-off-by: Anders Kaseorg --- .htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.htaccess b/.htaccess index 3fc5a02..91ead11 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,4 @@ RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f -RewriteRule ^(.*)$ zcommit.py/$1 [QSA,L] +RewriteRule ^(.*)$ zcommit.py/$1 [L] -- 2.45.0