Linuxコマンドを用いて一括でパーミッションを変更します。
ディレクトリを705に変更
find ./ -type d -exec chmod 705 {} \;
ファイルを604に変更
find /var/www/html -type f -exec chmod 604 {} \;
PHPファイルのみ604に変更
find ./ -name *.php -exec chmod 604 {} \;
指定したファイルを400に変更
find ./ -name wp-config.php -exec chmod 400 {} \;
※セキュリティ対策のためwp-config.phpを400に変更
コメント