我在.htaccess
中有以下代码redirect 301 /movies/ /list.php?category=13
它有效,但是当转到/ movies / other.html 时,它也重定向到list.php,但我实际上并不需要它,因为那里是处理^ movies /(。*)\。html $
类型的URL的另一个规则答案 0 :(得分:2)
使用RedirectMatch
并在匹配中使用结尾为$
的行。这里/
可能存在也可能不存在。
RedirectMatch 301 /movies(/)?$ /list.php?category=13