Apache 2.4 mod_rewrite和RewriteCond%{QUERY_STRING}为空

时间:2013-10-29 20:08:13

标签: php apache .htaccess mod-rewrite

到目前为止,我一直在使用

RewriteCond %{QUERY_STRING} =""

RewriteCond %{QUERY_STRING} !.*=.*

作为检查的条件是在应用重写规则之前我的查询字符串为空。从Apache 2.4开始,这些指令不再有效。

例如,对于我的http://test.loc/地址,mod_rewrite日志输出如下:

RewriteCond: input='ver=1.0' pattern='=""' => not-matched, referer: http://test.loc/

或使用第二个指令时

RewriteCond: input='ver=1.0' pattern='!.*=.*' => not-matched, referer: http://test.loc/

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

尝试使用正则表达式:

RewriteCond %{QUERY_STRING} ^(input=[^&]*)?$