Skip to content

Instantly share code, notes, and snippets.

Created August 9, 2017 02:27
Embed
What would you like to do?
WordPressをインストールした際におすすめ.htaccess
# protect htaccess
<files ~ "^\.ht">
deny from all
</files>
# protect wp-config.php
Options -Indexes
<files wp-config.php>
order allow,deny
deny from all
</files>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment