我想将特定页面重定向到主页。
我的源网址为http://examlple.com/index.html?page=22
我的目标网址为http://examlple.com/
我试过了Redirect /index.html?page=22 http://example.com/
我也试过使用301和RewriteRule,但还没有成功,这不起作用。
答案 0 :(得分:1)
您无法在重定向指令中与查询字符串进行匹配。
尝试mod_rewrite
RewriteEngine on
RewriteCond %{QUERY_STRING} ^page=22$
RewriteRule ^index\.html$ http://example.com/? [NC,L,R]
空白问题?标记在最后很重要,因为它会从网址中丢弃原始查询字符串。