diff options
| author | 2019-01-31 23:08:13 +0100 | |
|---|---|---|
| committer | 2019-01-31 23:08:13 +0100 | |
| commit | 44dab04a4a7b28ebce4b9954cd78b7b6bac03f38 (patch) | |
| tree | 85a302fe8384c03b67c30facddbb1a9f2046be1d | |
| parent | 5b40920bb3fd30137adc3b9286dd62f2fb30ec5b (diff) | |
| parent | 65602ab1935270f25b84108db723b1dae0868eed (diff) | |
Merge pull request #2235 from Alkarex/case_insensitive_authorisation
Case insensitive Authorization
| -rw-r--r-- | p/api/.htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/api/.htaccess b/p/api/.htaccess index 937983ec9..2bd6b1d14 100644 --- a/p/api/.htaccess +++ b/p/api/.htaccess @@ -1,5 +1,5 @@ <IfModule mod_setenvif.c> - SetEnvIf "^Authorization$" "(.*)" HTTP_AUTHORIZATION=$1 + SetEnvIfNoCase "^Authorization$" "(.*)" HTTP_AUTHORIZATION=$1 </IfModule> <IfModule !mod_setenvif.c> <IfModule mod_rewrite.c> |
