Larave php artisan storage:link 无效问题

在MacOS homestead环境下

需要 vagrant ssh 进入homestead虚拟机中运行 php artisan storage:link才会生效

在服务器CentOS 手动配置的环境下

需要使用ln -s命令(用绝对路径)

ln -s /your-app-absolute-path/storage/app/public /your-app-absolute-path/public/storage

同时,请确保服务器的symlink可用:
/etc/nginx/nginx.conf
http或者server或者location/下

disable_symlinks off;  # 这个是默认选项

你可能感兴趣的:(Larave php artisan storage:link 无效问题)