到目前为止,我一直在使用
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/
感谢任何帮助。
答案 0 :(得分:1)
尝试使用正则表达式:
RewriteCond %{QUERY_STRING} ^(input=[^&]*)?$