我在 webapps 根目录下的文件夹项目中有一些关于.jsp、contact.jsp、user.jsp、index.jsp 的页面。我使用 tukey-urlrewrite-filter 进行 url 映射。我用 url 写作作为
<rule>
<from>/contact_us</from>
<to>/contact.jsp</to>
</rule>
<rule>
<from>/about_us</from>
<to>/about.jsp</to>
</rule>
当我输入 url about_us 或 contact_us 时,这些都可以很好地打开相应的页面。但我想要 user.jsp 的 URL,除了contact_us 和 about_us。因为我使用 user.jsp 作为个人资料页面。如果在 url 中我输入“abhiramgiri” user.jsp 应该打开或者我输入的任何内容除了contact_us 和 about_us 它应该打开 user.jsp。我无法为这些案例编写实际代码。请帮我...