我正在使用tomcat 7.0进行Web项目。我想将一个页面重定向到另一个页面。
我可以在tomcat中使用.htaccess文件吗?如果可以使用,我该怎么办?
或者我可以在web.xml中配置吗?
我很感激你的帮助。
致以最诚挚的问候,
Sokly
答案 0 :(得分:0)
mod_rewrite
只是一个Apache模块,但您可以在Tomcat中使用UrlRewriteFilter
。
这样的规则应该适用于/WEB-INF/urlrewrite.xml
:
<urlrewrite>
<rule>
<note>
The rule means that requests to /page-one/ will be redirected to /page-two/.
The url will be rewritten.
</note>
<from>/page-one/</from>
<to type="redirect">/page-two/</to>
</rule>
</urlrewrite>