Merge pull request #3636 from paulvl/master

Handle authorization header
This commit is contained in:
Taylor Otwell 2016-01-23 11:32:08 -06:00
commit 70355f3066
1 changed files with 4 additions and 0 deletions

View File

@ -13,4 +13,8 @@
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>