From 85e8d21ef2320977d6f205ef793dc595ed5638d3 Mon Sep 17 00:00:00 2001 From: Paul Vidal Date: Sat, 23 Jan 2016 12:02:55 -0500 Subject: [PATCH] handle authorization header --- public/.htaccess | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 8eb2dd0dd..903f6392c 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -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}]