在我的网站上使用 SSL 后,如何在网址栏中显示 https 而不是 http

发布于 2024-11-05 21:07:30 字数 143 浏览 0 评论 0原文

我的网站上有 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 技术交流群。

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

发布评论

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

评论(2

温折酒 2024-11-12 21:07:30

无论使用什么网络服务器,您都需要告诉客户端访问您的安全 (https) 站点。

它们是不同的协议:httphttps。如果您希望客户端的浏览器使用您网站的 https 版本,您将需要发出重定向。例如:

GET http://stackoverflow.com HTTP/1.1


HTTP/1.1 302 Found
Location: https://stackoverflow.com

您必须在网络服务器代码中找到触发重定向的机制。

Whatever the web-server being used, you need to tell the client to go to your secure (https) site.

They are different protocols, http and https. If you want the client's browser to use the https version of your website you will need to issue a redirect. e.g.:

GET http://stackoverflow.com HTTP/1.1


HTTP/1.1 302 Found
Location: https://stackoverflow.com

You'll have to find the mechanism in your web-server code to trigger a redirect.

虫児飞 2024-11-12 21:07:30

想通了。在我的 httpd.conf 文件中,我添加了以下内容:

RewriteEngine on
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{REQUEST_URI} ^/about-us
RewriteCond %{REQUEST_URI} ^/
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

其中“about-us”是您要显示 https 的页面的 url

Figured it out. in my httpd.conf file i added this:

RewriteEngine on
RewriteCond %{HTTP:X-Forwarded-SSL} !on
RewriteCond %{REQUEST_URI} ^/about-us
RewriteCond %{REQUEST_URI} ^/
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

where "about-us" was is the url of the page you want to display https

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