2011-12-02 67 views
0

我有這個環節,我想,當有人進入它被重定向:如何在htaccess中做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

嘗試下探領先斜線的重寫規則如下

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