如何在服务器端确定传入请求是否为 HTTPS?

发布于 2024-09-11 22:45:28 字数 31 浏览 1 评论 0原文

我可以使用 HTTP 环境变量来解决这个问题吗?

Is there a HTTP environment variable I can use to work this out?

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

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

发布评论

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

评论(2

败给现实 2024-09-18 22:45:28

你在服务器端使用什么。
如果您使用 java servlet 那么您可以获得 URL 信息,如下所示:

String scheme = request.getScheme();
String serverName = request.getServerName();
int portNumber = request.getServerPort();

What are you using at server side.
If you are using java servlet then you can get URL information as follow:

String scheme = request.getScheme();
String serverName = request.getServerName();
int portNumber = request.getServerPort();
你的往事 2024-09-18 22:45:28

Apache 设置 HTTPS 环境变量当通过 SSL 发出请求时,值为 1 或“on”。请注意,简单 HTTP 请求中不存在此标志。

Apache sets an HTTPS environment variable to the value 1 or "on" when the request was made trough SSL. Note that this flag is not present on simple HTTP requests.

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