<rule>
<from>/admin/index/index.jsp</from>
<to>/admin/index</to>
</rule>
<outbound-rule>
<from>/admin/index</from>
<to>/admin/index/index.jsp</to>
</outbound-rule>
我正在尝试将此网址“/admin/index/index.jsp”重写为“/admin/index"..但我猜它正在将其重定向到”/ admin / index“,因为它说资源不能发现这么多问题我只想写“/admin/index/index.jsp”为“/ admin / index”
答案 0 :(得分:0)
使用规则
<rule>
<from>/admin/index</from>
<to>/admin/index/index.jsp</to>
</rule>
现在在href标签中使用路径+“/ admin / index +或您要指定url的位置 路径在哪里
String path = request.getContextPath();
它会起作用