2

我正在使用 tomcat 7.0 做一个网络项目。我想将一个页面重定向到另一个页面。

我可以在 tomcat 中使用 .htaccess 文件吗?如果可以使用,我该怎么办?

或者我可以在 web.xml 中配置吗?

我很感激你的帮助。

此致,

索利

4

1 回答 1

0

mod_rewrite只是一个 Apache 模块,但您可以UrlRewriteFilter在 Tomcat 中使用。

像这样的规则应该适用于您/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>
于 2013-11-04T08:18:23.280 回答