我有这个错误,当打开网站
GET http://127.0.0.1:8000/storage/categories/portable.jpg 404(Not Found)分类:73
这是浏览器https://imgur.com/a/VwXavqd中的代码链接
在我的.env文件中,我写道:
APP_URL=http://127.0.0.1:8000
FILESYSTEM_DISK=public
但这并没有帮助。
我有这个错误,当打开网站
GET http://127.0.0.1:8000/storage/categories/portable.jpg 404(Not Found)分类:73
这是浏览器https://imgur.com/a/VwXavqd中的代码链接
在我的.env文件中,我写道:
APP_URL=http://127.0.0.1:8000
FILESYSTEM_DISK=public
但这并没有帮助。
2条答案
按热度按时间2mbi3lxu1#
所以第一件事情
从公共中删除存储文件夹
再运行一次
字符串
然后转到
config/filesystems.php
并检查磁盘配置有时也可能是缓存问题,所以尝试运行
型
vatpfxk52#
如果将文件
portable.jpg
放在storage>app>public>images>categories
文件夹中,请使用<img src="/storage/images/categories/portable.jpg" />
或者,如果将其放入
storage>app>public>categories
中,则使用<img src="/storage/categories/portable.jpg" />
并确保使用了
php artisan storage:link
命令