Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
RewriteCond %{HTTP:Authorization} ^(.*) 
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]


If Apache is configured to use Virtual Hosts, adding above rules to .htaccess will not work. Instead, this configuration must be added directly to Apache's configuration:
 

 

Code Block
<VirtualHost>
    # ...
   RewriteEngine on
   RewriteCond %{HTTP:Authorization} ^(.*)
   RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
   # ...
</VirtualHost>

In case you followed our solution but the issue still happens, please feel free to submit tickets in our Client Area in order for us to help take further investigation.