我的网站上有问题。 当我通过IP访问网站时,一切都很好,但是当我通过域名访问网站时,出现此错误:
Mixed Content: The page at `<URL>` was loaded over HTTPS, but
requested an insecure stylesheet `<URL>`. This request has been
blocked; the content must be served over HTTPS.
https://141.105.67.4/en/games
https://g11games.com/en/games
能帮您解决这个问题吗?
答案 0 :(得分:0)
由于错误状态,您的网站是通过https
加载的,但是网站中包含的脚本是通过http
加载的。可能是,在配置中,您已设置APP_URL
指向http
URL,因此您网站上的所有资产都将其用作基本URL。将其更改为HTTPS应该可以解决错误。
答案 1 :(得分:0)
通过添加
修复<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">