From 32806c41c803b8feee9f75b7b2fc1da9e02033e8 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Thu, 14 Feb 2013 14:08:22 +0000 Subject: [PATCH] Issue #670454 by pwolanin, cburschka, effulgentsia: Fixed Support HTTP Authorization in CGI environment. --- .htaccess | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.htaccess b/.htaccess index 3e53e027cb36..1e08407d4937 100644 --- a/.htaccess +++ b/.htaccess @@ -63,6 +63,10 @@ DirectoryIndex index.php index.html index.htm RewriteCond %{HTTPS} on RewriteRule ^ - [E=protossl:s] + # Make sure Authorization HTTP header is available to PHP + # even when running as CGI or FastCGI. + RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + # Block access to "hidden" directories whose names begin with a period. This # includes directories used by version control systems such as Subversion or # Git to store control files. Files whose names begin with a period, as well -- GitLab