RequestHeader没有设置apache httpd

时间:2017-07-18 17:54:29

标签: apache rhel request-headers

我正在尝试在apache httpd环境中设置RequestHeader。 我创建了一个非常简单的html页面和简单的设置来验证,但无论我做什么都不会创建请求标头。我验证了是否安装了mod_headers并设置正常(响应)标头工作正常。 即使使用.htaccess文件来设置RequestHeader也无法正常工作。 我们正在使用以下设置:

  • 红帽企业Linux服务器版本7.3(Maipo)
  • 服务器版本:Apache / 2.4.6(红帽企业Linux)

Virtualhost文件:

<VirtualHost *:81>
    ServerName localhost
        ErrorLog /var/log/httpd/error_81
        TransferLog /var/log/httpd/access_81
        DocumentRoot /var/www/html81
        DirectoryIndex index.html index.cgi index.pl index.php index.xhtml
        Header add test "test"
        RequestHeader add test "test"
</VirtualHost>

在图像中可以看到Header已设置但不是RequestHeader header example in firefox 可悲的是,没有任何方法可以获得标题。 任何人都知道如何让RequestHeader处理apache?

0 个答案:

没有答案