- 先進入到wordpress資料夾,以下為我的路徑
cd /var/www/html/wordpress
- 接著輸入以下指令修復資料夾
sudo chown www-data:www-data -R *
www-data
是Apache使用者
-R
所有次目錄或檔案同時更改檔案擁有者 - 修復資料夾權限
sudo find . -type d -exec chmod 755 {} \;
- 修復檔案權限
sudo find . -type f -exec chmod 644 {} \;
參考:http://stackoverflow.com/questions/18352682/correct-file-permissions-for-wordpress