Created
August 26, 2014 04:45
-
-
Save dipakcg/dfc3d57c0d7f16455923 to your computer and use it in GitHub Desktop.
WordPress - Protect .htaccess 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 .htaccess file from brute force attacks | |
<Files .htaccess> | |
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