我知道 .htaccess 规则是从上到下解析的,但是如果我的 URL 匹配两个规则,哪一个将被使用,为什么?
我有简单的规则,比如
^(.*)$ index.php?pag=cms&title=$1
^store/(.*)$ index.php?pag=store&id=$1
基本上任何 URL 都会匹配第一个规则,那么其他的会发生什么?
我知道 .htaccess 规则是从上到下解析的,但是如果我的 URL 匹配两个规则,哪一个将被使用,为什么?
我有简单的规则,比如
^(.*)$ index.php?pag=cms&title=$1
^store/(.*)$ index.php?pag=store&id=$1
基本上任何 URL 都会匹配第一个规则,那么其他的会发生什么?