the broken link和the output of files 我在公共目录中创建了文件夹名称:“ storage”,然后尝试运行:
artisan storage:link
但是它显示消息“已杀死”。
我想将图像保存在文件夹storage / app / public / temporary
任何人都知道应该怎么做?
答案 0 :(得分:0)
您应该调整文件权限。进入您的项目根文件夹并执行以下命令。
将组更改为Apache
sudo chgrp -R www-data storage public
更改权限
sudo chmod -R 775 storage public
重新启动Apache
service apache2 restart