在Jboss 4.0.3中进行Urlrewriting

时间:2015-04-24 12:20:53

标签: web-applications jboss url-rewriting rule

我使用JBoss4.0.3应用服务器部署了一个Web应用程序。在这个Web应用程序中,我使用urlrewritefilter-4.0.3进行url重写,并在urlrewrite.xml中编写了一条规则

<rule>
    <from>subCategories/([a-z0-9]+)/([a-z0-9]+)$*</from>
    <to>browseCategories.do?category=$1&amp;subjectName=$2</to>
</rule>

我想将网址从https://localhost:8080/subCategories/sub11758/Physics转换为
https://localhost:8080/browseCategories.do?category=sub11758&subjectName=Physics

但urlrewriter未重定向到所需的网址。请帮我纠正这个或建议一种调试urlrewriting的方法。

0 个答案:

没有答案