gpt4 book ai didi

apache - 使用 query_string 设置 header

转载 作者:行者123 更新时间:2023-12-02 09:54:28 25 4
gpt4 key购买 nike

我正在运行 apache,并且仅当请求的查询字符串上有变量“q”时,我才尝试设置 header Foo=bar 。我希望在我的 htaccess 中有这样的东西:

<RequestUri "q=">
Header set Foor "bar"
</RequestUri>

当然不行。我已经尝试使用“Location”和“LocationMatch”,但 htaccess 中不允许使用这些。那么我该怎么做呢?

最佳答案

如果您使用的是 Apache 2.4,您可以执行类似的操作

<If "%{QUERY_STRING} =~ /q=.*?/">
Header set Foo "bar"
</If>

https://httpd.apache.org/docs/2.4/mod/core.html#if

https://httpd.apache.org/docs/2.4/expr.html#examples

关于apache - 使用 query_string 设置 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34486949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com