fix(htaccess): add ? after index.php in RewriteRule

fixes #152
This commit is contained in:
Yassine Doghri 2022-02-05 11:02:25 +00:00
parent 2f2480998f
commit d9d139eefa
1 changed files with 1 additions and 1 deletions

View File

@ -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} .