将查询字符串重定向到root

时间:2015-01-16 21:37:28

标签: php wordpress .htaccess mod-rewrite redirect

我已尝试过多种重定向变换,根据研究重写条件和规则,虽然我知道我需要学习重定向,但我真的很难弄清楚如何将查询字符串重定向到我的根目录:/

我需要将http://www.stapletondenver.com/news/press_detail.asp?pressReleaseID=10重定向到http://www.stapletondenver.com

同样,我尝试了一些变体,包括以下内容:

RewriteCond %{QUERY_STRING}  ^/news/press_detail.asp?pressReleaseID=10$
RewriteRule (.*)  /?  [R=301,L]

我是在正确的轨道和/或我做错了什么?所有和任何帮助都非常感谢,提前感谢!

1 个答案:

答案 0 :(得分:2)

尝试:

RewriteCond %{QUERY_STRING}  ^pressReleaseID=10$
RewriteRule ^/?news/press_detail\.asp$  /?  [R=301,L]

%{QUERY_STRING}变量查询字符串,而不是URI的任何部分。