sudo chown -R ubuntu:www-data shopxo
sudo chmod 750 shopxo
cd shopxo
find -type d -exec chmod 750 {} \;
find -not -type d -exec chmod 640 {} \;
# 不同的目录做写入权限的处理
find . -name "runtime" -type d -exec chmod -R 770 {} \;
sudo chown -R ubuntu:www-data shopxo
sudo chmod 750 shopxo
cd shopxo
find -type d -exec chmod 750 {} \;
find -not -type d -exec chmod 640 {} \;
# 不同的目录做写入权限的处理
find . -name "runtime" -type d -exec chmod -R 770 {} \;