Skip to content
Snippets Groups Projects
Commit d9d139ee authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

fixes #152
parent 2f248099
No related branches found
No related tags found
No related merge requests found
......@@ -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} .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment