Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我所拥有的
RewriteRule ^/articles/category/([0-9]+)/$ ./index.php?module=articles&view=cat&catid=$1
我肯定错过了什么?
只是想得到“catid”而不是别的。
将您的规则更改为:
RewriteRule ^articles/category/([0-9]+)/?$ /index.php?module=articles&view=cat&catid=$1 [L,NC,QSA]
请记住,RewriteRule 在去除前导斜杠后开始匹配 URI/
/
添加的一些标志是: