0

我设置了以下规则。前两个正在工作,但最后一个并不想开火

RewriteRule ^/Content/(.*)/(.*)$                    /?main=$1&headline=$2 [L]
RewriteRule ^/Content/(.*)$                         /?main=$1 [L]
RewriteRule ^/Content/(.*)$                            /?index.php?p=$1 [L]
4

1 回答 1

0

这是因为您的第二条和第三条规则看起来相同。如果你想同时触发最后两个(在这种情况下它没有意义),只需删除 [L],它命令解析器在命中后停止。

于 2012-05-04T13:10:45.337 回答