.htaccess 301重定向问题

时间:2011-06-06 12:44:38

标签: .htaccess redirect

我在.htaccess

中有以下代码
redirect 301 /movies/ /list.php?category=13

它有效,但是当转到/ movies / other.html 时,它重定向到list.php,但我实际上并不需要它,因为那里是处理^ movies /(。*)\。html $

类型的URL的另一个规则

1 个答案:

答案 0 :(得分:2)

使用RedirectMatch并在匹配中使用结尾为$的行。这里/可能存在也可能不存在。

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