ホームページ作って独立して生きていく人が読むとピンっとくるかもです

ホームページ作って独立して生きていく

WordPress セキュリティ対策

WordPressで使えるセキュリティhtaccess

投稿日:

#htaccessを書き換えさせない
<files ~ "^.*\.(&#91;Hh&#93;&#91;Tt&#93;&#91;Aa&#93;)">
order allow,deny
deny from all
satisfy all
</files>

#wp-config.phpにアクセスさせない
<files wp-config.php>
order allow,deny
deny from all
</files>

#wp-includesフォルダへのアクセス制限
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^wp-admin/includes/ - [F,L]
RewriteRule !^wp-includes/ - [S=3]
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
RewriteRule ^wp-includes/theme-compat/ - [F,L]
</IfModule>

 

 

wp-config.phpのパーミッションは400にしておく

-WordPress, セキュリティ対策

Copyright© ホームページ作って独立して生きていく , 2024 All Rights Reserved Powered by AFFINGER5.