我刚刚在heroku上部署了一个应用程序,它没有按预期渲染。检查控制台后,我收到了以下错误。我该如何修复此错误?Mixed Content: The page at 'https://photography-web-by-alphy.herokuapp.com/' was loaded over HTTPS, but requested an insecure stylesheet 'http://photography-web-by-alphy.herokuapp.com/css/style.css'. This request has been blocked; the content must be served over HTTPS.
5条答案
按热度按时间1rhkuytd1#
1.我使用了安全资产助手功能。
<link rel="stylesheet" href="{{ secure_asset('css/style.css') }}">
1.我将.env文件中的APP_URL从http更新为https。然后在heroku上的配置变量中,我将KEY添加到APP_URL,并且我提供的值与.env中的APP_URL相同,然后重新部署应用程序,现在它工作正常,没有错误!
2uluyalo2#
当你的文档作为HTTPS的时候,其他的资源也必须作为HTTPS调用,比如css,js images等等。
所以,只要尝试用https://导入css...问题就会解决。
jhiyze9q3#
不使用资产,则不会强制执行任何协议
或者,最好配置“受信任代理”设置以检测所需的协议。
https://laravel.com/docs/8.x/requests#configuring-trusted-proxies
pdsfdshx4#
要在Laravel中强制HTTPS,您应该在App\Providers\AppServiceProvider中添加:
注意:在.env中,将APP_ENV=本地更改为APP_ENV=生产
vvppvyoh5#
要在Laravel中强制HTTPS,您应该在
App\Providers\AppServiceProvider
中添加: