特定页面始终为 https,其他一些页面始终为 http

发布于 2024-11-19 14:55:07 字数 153 浏览 0 评论 0原文

我希望我的网站上的一些页面始终为 https,而其他页面始终为 http。

如果有人使用 http:// 访问 https 页面,他应该被重定向到 https,反之亦然,如果有人使用协议 https:// 访问本应通过 http:// 的页面,他应该被重定向到 http 版本

I want a few pages on my website to be always https and other pages to be always http.

If someone visits the https page with http://, he should be redirected to https and vice versa, if someone visits the page meant to be over http:// with protocol https:// he should be redirected to http version

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

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

发布评论

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

评论(1

萌能量女王 2024-11-26 14:55:08

使用 $_SERVER['HTTPS'] 检测用户是否已经在 https 连接上,否则使用 301 进行重定向 - 永久移动(所有未来的请求都应转到预期的 https URL)。重定向示例位于此处

Use $_SERVER['HTTPS'] to detect if the user is already on an https connection, otherwise redirect using a 301 - Moved Permanently (all future requests should go to the intended https URL). Example for redirection is here.

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