如何在htaccess中进行301重定向?

时间:2011-12-02 18:42:41

标签: .htaccess redirect http-status-code-301

我有这个链接,我想要有人去看它时重定向:

http://www.xxxxx.com/model_me.php?id=16

我这样做了,但是id不起作用:

RewriteCond %{QUERY_STRING} ^id=16$
RewriteRule ^/model_me.php$ http://www.xxxxx.com? [L,R=301]

任何想法?

感谢

1 个答案:

答案 0 :(得分:1)

尝试删除RewriteRule中的前导斜杠,如下所示

RewriteCond %{QUERY_STRING} ^id=16$
RewriteRule ^model_me.php$ http://www.xxxxx.com? [L,R=301]