我的htaccess文件中有以下规则:
RewriteRule ^client-hub/roundtable/([0-9]+)$ /client-hub/roundtable?roundtable=$1 [QSA,L]
RewriteRule ^client-hub/roundtable/([0-9]+)/setup$ /client-hub/roundtable/setup?roundtable=$1 [QSA,L]
第一条规则正常,第二条则不然。 预期的输入是/ client-hub / roundtable / 123 / setup 和预期的最终网址将是: / client-hub / roundtable / setup?roundtable = 123(如果直接访问它可以正常工作),但第二条规则似乎不起作用。
有什么建议吗?