.htaccess重定向规则

时间:2014-09-02 11:22:28

标签: .htaccess mod-rewrite redirect

我正在寻找为所有具有以下结构的链接使用重定向规则的方法:

 http://page.com/common/roar/results.htm?something_goes_there

我尝试过以下规则,但都不起作用:

RewriteRule ^(.)common(.)$ http://page.com [R=301,L]

RewriteCond %{QUERY_STRING} common [OR]
RewriteCond %{REQUEST_URI} common
RewriteRule ^ http://page.com/? [L,R=301]

我可以手动完成所有重定向,但我想确保不需要新的重定向。

谢谢。

1 个答案:

答案 0 :(得分:0)

从技术上讲,以下规则应该有效(可能你错过RewriteEngine On):

RewriteEngine On
RewriteRule ^common http://page.com/ [L,R=301]