问题是在/ portal位置下使用apache proxy设置标头,而不是在/ portal之外设置其他资源。
标题添加:
www.example.com/portal/css/some.css
并不是:
www.example.com/index.html
测试:
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/portal
Header set headerKey "HeaderValue"
RewriteCond不会将set header限制为/ portal资源。
答案 0 :(得分:0)
你可以尝试:
<Location "/portal">
Header set headerKey "HeaderValue"
</Location>