Skip to main content

WP file permission

Change all folder (dir)
sudo find . -type d -exec chmod 755 {} +

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

Comments