我们在 Magento 商店的购物车页面上收到了很多混合内容错误
Mixed Content: The page at 'https://www.magento.com/onestepcheckout/index/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Lato:400,300,700,900'. This request has been blocked; the content must be served over HTTPS.
我可以看到谷歌字体文件正在通过 http 在我们主题的 head 部分中调用
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
我想知道如果我将上面的行更改为:
选项1
<link href='https://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
或 选项 2
<link href='//fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
考虑到我们的大多数网站都使用 http,哪种方法最好?我不知道选项 2,这似乎是一个非常好的方法。