我有这个链接,我想要有人去看它时重定向:
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]
任何想法?
感谢
答案 0 :(得分:1)
尝试删除RewriteRule中的前导斜杠,如下所示
RewriteCond %{QUERY_STRING} ^id=16$
RewriteRule ^model_me.php$ http://www.xxxxx.com? [L,R=301]