在 weblogic 上重定向
我有一个旧网站,其 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,处理它的一种方法是在 web.xml 中执行类似的操作:
并在 index2.jsp 中转发到新网站。
另一种方法(我实际采用的方法)是使用 URLRewriteFilter,我使用了这个:
http://www. tuckey.org/urlrewrite/
刚刚添加了这个:
到 urlrewrite.xml 配置文件(我还需要包含带有过滤器文件的 jar),它的工作就像一个魅力。
Ok, one way to handle it could be do something like this in web.xml:
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:
to urlrewrite.xml config file (I also needed to include the jar with filter files) and it worked like a charm.