如何检查 Apache 中是否存在查询字符串

问题描述 投票:0回答:0

我正在尝试检查 HTTP 请求中是否不存在查询字符串,然后设置一些标头。我正在关注这个:https://httpd.apache.org/docs/2.4/expr.html

我试过了-

 <If "! %{QUERY_STRING} ">
        Header always set Cache-Control "max-age=120"
  </If>

<If "%{QUERY_STRING} -z">
        Header always set Cache-Control "max-age=120"
  </If>

获取语法错误。 你能告诉我怎么做吗?

regex apache mod-rewrite apache2.4
© www.soinside.com 2019 - 2024. All rights reserved.