美文网首页
Larave php artisan storage:link

Larave php artisan storage:link

作者: 馨如姐姐 | 来源:发表于2017-02-07 21:28 被阅读660次

    在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

          本文链接:https://www.haomeiwen.com/subject/gsbmittx.html