- 本文地址: https://www.yangdx.com/2022/10/223.html
- 转载请注明出处
DcatAdmin 图片/文件上传说明:https://learnku.com/docs/dcat-admin/2.x/picture-file-upload/8106#5e550f
我根据文档中的说明配置了七牛云,但在使用了 saveFullUrl
方法后,发现返回的资源链接是 http 而非 https。
阅读了扩展包源码,目前在 app/Providers/AppServiceProvider.php
文件的 boot 方法中添加两行代码得以解决:
public function boot()
{
// 七牛云设置默认url为https
$domain = config('filesystems.disks.qiniu.domains.https');
Storage::disk('qiniu')->getAdapter()->setDomainPrefix('https://'.$domain, 'default');
}
快来评论一下吧!
发表评论