特定页面始终为 https,其他一些页面始终为 http
我希望我的网站上的一些页面始终为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 $_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.