找到网站的源目录,也就是wordpress的安装目录
1、更改文件所有者及用户组
sudo chown www-data:www-data -R *
2、分别更改文件以及目录的所有权
find . -type d -exec chmod 755 {} \; # Change directory permissions rwxr-xr-x
find . -type f -exec chmod 644 {} \; # Change file permissions rw-r--r--