在我的网站上使用 SSL 后,如何在网址栏中显示 https 而不是 http
我的网站上有 SSL,但顶部 URL 栏中仍然只显示 http://
而不是 https://
。
我正在为我的网站使用带有 Django Python 堆栈的 Satchmo 系统。有人对此有一些见解吗?
I have SSL on my website but in the top URL bar still only says http://
not https://
.
I am using the Satchmo system with a Django Python stack for my website. Does anyone have some insight to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无论使用什么网络服务器,您都需要告诉客户端访问您的安全 (
https
) 站点。它们是不同的协议:
http
和https
。如果您希望客户端的浏览器使用您网站的https
版本,您将需要发出重定向。例如:您必须在网络服务器代码中找到触发重定向的机制。
Whatever the web-server being used, you need to tell the client to go to your secure (
https
) site.They are different protocols,
http
andhttps
. If you want the client's browser to use thehttps
version of your website you will need to issue a redirect. e.g.:You'll have to find the mechanism in your web-server code to trigger a redirect.
想通了。在我的 httpd.conf 文件中,我添加了以下内容:
其中“about-us”是您要显示 https 的页面的 url
Figured it out. in my httpd.conf file i added this:
where "about-us" was is the url of the page you want to display https