Created
August 26, 2014 04:44
-
-
Save dipakcg/0680542cdb8eb19a9fad to your computer and use it in GitHub Desktop.
WordPress - Protect wp-config.php file from brute force attacks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add the following code in .htaccess to protect wp-config.php file from brute force attacks | |
<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