文章列表
我在使用UrlRewrite Filter时,碰到了路径的问题,web.xml配置是没错的
在webroot有add.jsp、list.jsp和manage文件夹,其中manage文件夹中有一个reg.jsp文件
urlrewrite.xml配置为:
<rule>
<from>add.html</from>
<to type="forward">%{context-path}/add.jsp</to>
</rule>
<rule>
...