From d9d139eefa03c28d1a064b3b32c9036193497e57 Mon Sep 17 00:00:00 2001 From: Yassine Doghri <yassine@doghri.fr> Date: Sat, 5 Feb 2022 11:02:25 +0000 Subject: [PATCH] fix(htaccess): add ? after index.php in RewriteRule fixes #152 --- public/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/.htaccess b/public/.htaccess index 189ec9ae33..f2be5c76cb 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -31,7 +31,7 @@ Options All -Indexes # request to the front controller, index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA] + RewriteRule ^([\s\S]*)$ index.php?/$1 [L,NC,QSA] # Ensure Authorization header is passed along RewriteCond %{HTTP:Authorization} . -- GitLab