wordpress文件/目录权限

将所有文件权限设置为644

sudo find . -type f -exec chmod 644 {} +

讲所有目录权限设置为755

sudo find . -type d -exec chmod 755 {} +