如何在websphere应用程序服务器上将http请求重定向到https

发布于 2024-10-31 02:26:47 字数 288 浏览 4 评论 0原文

我正在尝试将 http 请求自动重定向到 websphere 应用程序服务器上的 https。

我在这里找到了 weblogic 的解决方案 - http://middlewaremagic.com/weblogic/?p=2019

我想知道 websphere 是否有类似的东西,我可以只更改 web.xml 并在管理控制台中执行某些操作。

谢谢。

I am trying to automatically redirect http request to https on websphere application server.

I found a solution for weblogic here - http://middlewaremagic.com/weblogic/?p=2019

I was wondering if there is any thing similar for websphere where in I can just change the web.xml and do something in admin console.

Thanks.

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

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

发布评论

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

评论(1

终难遇 2024-11-07 02:26:47

IBM 建议在 WAS 之前始终使用适当的反向代理 Web 服务器(IHS、Apache 等)。原因是附加到网络传输链的集成网络服务器除了最基本的功能之外实际上不提供任何东西。

一般来说,你所要求的应该用 IHS/Apache 来完成,你想要做类似的事情

LoadModule rewrite_module modules/mod_rewrite.so
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

It is recommended by IBM to use always a proper reverse proxying web server (IHS, Apache, etc) in front of WAS. The reason is that the integrated web server that is attached to the web transport chain really doesn't offer anything besides the most basic functionalities.

Generally what your are asking for should be done with the IHS/Apache and you want to do something like

LoadModule rewrite_module modules/mod_rewrite.so
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文