解决 http 不会更改为 https 的问题
Solve issue when http won't change to https
我已经为我的网站安装了 SSL 证书,但它不适用于某些页面。我进入 Google Chrome 控制台选项并发现此错误消息:
Mixed Content: The page at
'https://www.feelhome.se/produkt/blackgrey-feather/' was loaded over
HTTPS, but requested an insecure font
'http://www.feelhome.se/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons.woff'.
This request has been blocked; the content must be served over HTTPS.
我进入了 "insecure font" 但那里没有 "http" URL 我可以更改以删除此错误消息。如何删除出现的错误消息?
您需要更改 CSS 文件中对字体的引用,以便它使用 https:// URL。
导入页面的所有外部资源(css、javascript、图像等)需要是相对的 URL 以便它们自动使用相同的协议,或者您需要在 URL.
中明确使用 https://
我已经为我的网站安装了 SSL 证书,但它不适用于某些页面。我进入 Google Chrome 控制台选项并发现此错误消息:
Mixed Content: The page at 'https://www.feelhome.se/produkt/blackgrey-feather/' was loaded over HTTPS, but requested an insecure font 'http://www.feelhome.se/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons.woff'. This request has been blocked; the content must be served over HTTPS.
我进入了 "insecure font" 但那里没有 "http" URL 我可以更改以删除此错误消息。如何删除出现的错误消息?
您需要更改 CSS 文件中对字体的引用,以便它使用 https:// URL。
导入页面的所有外部资源(css、javascript、图像等)需要是相对的 URL 以便它们自动使用相同的协议,或者您需要在 URL.
中明确使用 https://