在 weblogic 上重定向

发布于 2024-12-11 23:38:26 字数 205 浏览 0 评论 0原文

我有一个旧网站,其 URL 类似于 mysite.com/aaa/bbb ,而新网站则为 mysite.com/aaa 。我希望所有访问 mysite.com/aaa/bbb 的用户改为访问 mysite.com/aaa - 最好、最简单的方法是什么?我只有一个可以修改的 .war 文件。

WebLogic 是否有类似于 mod_rewrite(在 Apache 上)的功能?

I have a legacy website that has URL like mysite.com/aaa/bbb and new one that is mysite.com/aaa . I want all users that go to mysite.com/aaa/bbb to go to mysite.com/aaa instead - what's the best and easiest way to do it? I only have one .war file that I can modify.

Does WebLogic have something similar to mod_rewrite (on Apache)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总攻大人 2024-12-18 23:38:26

好吧,处理它的一种方法是在 web.xml 中执行类似的操作:

<servlet-mapping>
    <servlet-name>Old portal</servlet-name>
    <url-pattern>/bbb</url-pattern>
</servlet-mapping>

<servlet>
    <servlet-name>Old Portal</servlet-name>
    <jsp-file>/index2.jsp</jsp-file>
</servlet>

并在 index2.jsp 中转发到新网站。

另一种方法(我实际采用的方法)是使用 URLRewriteFilter,我使用了这个:

http://www. tuckey.org/urlrewrite/

刚刚添加了这个:

    <rule>
            <from>^/bbb/*</from>
            <to type="permanent-redirect">/aaa</to>
    </rule>

到 urlrewrite.xml 配置文件(我还需要包含带有过滤器文件的 jar),它的工作就像一个魅力。

Ok, one way to handle it could be do something like this in web.xml:

<servlet-mapping>
    <servlet-name>Old portal</servlet-name>
    <url-pattern>/bbb</url-pattern>
</servlet-mapping>

<servlet>
    <servlet-name>Old Portal</servlet-name>
    <jsp-file>/index2.jsp</jsp-file>
</servlet>

and in index2.jsp forward to new website.

The other way (the one I actually taken) is to use URLRewriteFilter, I used this one:

http://www.tuckey.org/urlrewrite/

just added this:

    <rule>
            <from>^/bbb/*</from>
            <to type="permanent-redirect">/aaa</to>
    </rule>

to urlrewrite.xml config file (I also needed to include the jar with filter files) and it worked like a charm.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文