gpt4 book ai didi

magento - SSL 错误!,您的连接已使用现代密码学加密

转载 作者:太空宇宙 更新时间:2023-11-03 13:53:39 24 4
gpt4 key购买 nike

您好,当您输入 https://www.limitx.com.mx 时,我的域和 SSL 有问题你可以看到 ssl 加密错误,你的连接是用现代密码学加密的,我该如何解决这个问题?我不知道如何解决这个问题,我希望能帮助我。问候大家!

最佳答案

您的主页上有两个资源是通过 HTTP(混合内容)提供的。

Mixed Content: The page at 'https://limitx.com.mx/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Roboto:400,900,300,700'. This request has been blocked; the content must be served over HTTPS.

这来自生成 HTML 的主文件:

<link href='fonts.googleapis.com/css?family=Roboto:500,300'; rel='stylesheet' type='text/css'>

你需要把它改成

<link href='https://fonts.googleapis.com/css?family=Roboto:500,300'; rel='stylesheet' type='text/css'>

Mixed Content: The page at 'https://limitx.com.mx/' was loaded over HTTPS, but requested an insecure image 'http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png'. This content should also be served over HTTPS.

这来自https://limitx.com.mx/skin/frontend/ultimo/default/css/styles.css

.form-search .button {
...
background-image: url(http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png);
...
}

您不能使用此 URL 的 HTTPS 版本作为 http://limitx.panamerik.net/skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/buscar.png 的证书与主机不匹配。

您可以在本地复制此文件 (buscar.png),也许在 skin/frontend/ultimo/default/images/infortis/_shared/generic-nav/下并将 CSS 更改为

.form-search .button {
...
background-image: url(../images/infortis/_shared/generic-nav/buscar.png);
...
}

关于magento - SSL 错误!,您的连接已使用现代密码学加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30353056/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com