有http://foo.com和https://secur.foo.com。
如果来自https://secur.foo.com的请求,我想要一些外部信息来请求标题。
有人可以告诉我如何完成上述要求吗?
我尝试按照步骤添加标头以进行请求,但失败了。 1.下载新的httpd并安装它。 2.取消注释“LoadModule headers_module modules / mod_headers.so”行 3.在“httpd.conf”
的末尾添加以下代码Header add myheader "myvalue"
RequestHeader set myheader2 "myvalue2"
<ifModule mod_headers.c>
RequestHeader append myheader3 "myvalue3"
</ifModule>
但我只发现“myheader:myvalue”作为回应,如何在请求中显示“myheader2”?
答案 0 :(得分:2)
试试这个:
<ifModule mod_headers.c>
RequestHeader append myheader2 "myvalue2"
</ifModule>