WordPress 資料權限修復

  1. 先進入到wordpress資料夾,以下為我的路徑
    cd /var/www/html/wordpress
  2. 接著輸入以下指令修復資料夾
    sudo chown www-data:www-data -R *

    www-data是Apache使用者
    -R所有次目錄或檔案同時更改檔案擁有者

  3. 修復資料夾權限
    sudo find . -type d -exec chmod 755 {} \;
  4. 修復檔案權限
    sudo find . -type f -exec chmod 644 {} \;

參考:http://stackoverflow.com/questions/18352682/correct-file-permissions-for-wordpress



這裡的資訊對您有用嗎?歡迎斗內給我