我正在尝试获取 http://www.mysite.com/cat/top/union-made
转发到 http://www.mysite.com/cat/top/union-made-in-usa
但它似乎与我的动态重写混合在一起,我得到了这个: http ://www.mysite.com/cat/top/union-made-in-usa/2?topic=union-made&pg=
这是我当前的 htaccess 规则:
RewriteRule ^cat/top/union-made/ /cat/top/union-made-in-usa [R=301,L]
#Redirect dynamic pages to static links
RewriteRule ^cat/top/([a-z0-9_-]+)/?([a-z0-9_-]*) /cat/index.php?top=$1&pg=$2 [NC,L]
我以为 [L] 会停止双重规则,但没有。谢谢你的帮助。