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

SSL error!, your connection is encrypted with modern cryptography

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

嗯,问题是您页面上的其他对象没有使用 ssl,您是否有任何使用 http 而不是 https 的嵌入式链接?我会检查那些图像,它们很可能是罪魁祸首。不要使用相对路径,而是尝试将所有带有 https://url 的图像硬编码为 image/ 好吗?那应该能很好地解决你的问题。不错的网站顺便说一句。

对于您的 Firefox 问题:https://support.mozilla.org/en-US/questions/967766 网站 "supply ownership information" 的唯一方法是通过安全连接和 "Extended Validation Certificate",这将在相关证书颁发机构每年花费数百美元或更高:https://en.wikipedia.org/wiki/Extended_Validation_Certificate

Google 问题:https://support.google.com/chrome/answer/95617?p=ui_security_indicator&rd=1 您与网站的连接已加密,但 Google Chrome 检测到页面上有混合内容。如果您在此页面上输入信息,请务必小心。混合内容可以为某人操纵页面提供漏洞。此内容可能是第三方图片或网页上嵌入的广告。

Internet Explorer.....没有发现任何问题。

您的主页上有两个资源是通过 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);
...
}