混合内容 - 不安全的样式表

Mixed Content - Insecure Stylesheet

在浏览器中,我收到以下错误: 混合内容:位于“https://www.website.com/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Play:400,700”的页面。此请求已被阻止;内容必须通过 HTTPS 提供。

我在代码中找到调用样式表的位置,并将地址更改为https:

<link href="http://fonts.googleapis.com/css?family=Play" rel="stylesheet" type="text/css" />

没有成功,错误依旧

有什么帮助或建议吗?

谢谢

在 Google 字体中使用 https link 绝对 确实 工作 - 只需在更改样式表后清空浏览器缓存 link到

<link href="https://fonts.googleapis.com/css?family=Play" rel="stylesheet" type="text/css" />