Skip to content

Commit

Permalink
Update htaccess to better handle non ascii characters. Fixes #3089
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Jun 18, 2020
1 parent 2f59f71 commit f0e6f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Options All -Indexes
# request to the front controller, index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteRule ^(\s\S*)$ index.php/$1 [L,NC,QSA]

# Ensure Authorization header is passed along
RewriteCond %{HTTP:Authorization} .
Expand Down

0 comments on commit f0e6f60

Please sign in to comment.