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.
我正在使用带有 tuckey 的 tomcat 进行 URLRewrite。我的 urlrewrite.xml 中几乎没有规则。我如何确保其中一条规则匹配;它停止处理进一步的规则!
找到了答案;提到“last = true”例如:
<rule > <from>/kids/(.*)$</from> <to type="forward" last="true">/kids/$1.jsp</to> </rule>