SSL 无法在 Virtuemart 上正常运行?

发布于 2024-12-01 07:12:11 字数 105 浏览 3 评论 0原文

我已经从我的商店转移了整个页面,并将所有请求更改为 https。

但是它仍然在 chrome 上显示红十字?它有时会起作用,然后如果你离开它,它就会变成红色。我该如何解决这个问题?

I have gone other the whole page from my shop and changes all requests to https.

However it still shows the red cross on chrome? It works sometimes and then if you navigate away it goes red. How can i go about fixing this?

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

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

发布评论

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

评论(1

绝不放开 2024-12-08 07:12:11

看起来您的页面包含安全内容和不安全内容。如果您对所有内容(css 文件、js 文件、图像、所有链接)使用 SSL 路径,则应以 https 开头,或者路径应该是相对的。

例如:

- 安全

- 安全

- 不安全

我认为这就是问题所在。我希望它会有所帮助。

Looks like your page contains both secure and non secure content. If you use SSL pathes to all your content(css-files, js-files, images, all links) should start with https or pathes should be relative.

For exalmple:

<link rel="stylesheet" href="/css/styles.css" type="text/css" /> - secure

<link rel="stylesheet" href="https://site.com/css/styles.css" type="text/css" /> - secure

<link rel="stylesheet" href="http://site.com/css/styles.css" type="text/css" /> - non secure

I think this is the problem. I hope it will help.

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