2011-06-06 131 views
2

我在.htaccess的.htaccess 301重定向問題

redirect 301 /movies/ /list.php?category=13 

它的工作原理,但去/電影/ other.html時,重定向到list.php的,下面的代碼,但因爲還有另外一個規則來處理類型爲^ movies /(。*)\的網址$ html $

回答

2

使用RedirectMatch並在結果中使用結尾$。這裏的/可能會或可能不存在。

RedirectMatch 301 /movies(/)?$ /list.php?category=13