我正在使用tuckey重写网址:
<rule>
<from>^/?([a-z-/]+)$</from>
<to>/$1.xhtml</to>
</rule>]
但是..我有一个webservice servlet托管在:
/ws/service
如何从Tuckey重写中排除它?使用现有规则,这会将请求转发到不存在的/ws/service.xhtml。
答案 0 :(得分:2)
添加以下规则:
<rule>
<from>^/ws/.*$</from>
<to last="true">-</to>
</rule>