Laravel网站根目录权限设置 发表评论 for directories find . -type d -print0 | xargs -0 chmod 0755BashCopy for files find . -type f -print0 | xargs -0 chmod 0644BashCopy chown -R www-data:www-data *BashCopy 把当前文件夹也加入php-fpm用户组 chown -R www-data:www-data .BashCopy 更改 storage 文件夹权限 chmod -R 0755 storageBashCopy