Created
January 28, 2014 13:42
-
-
Save yoren/8667867 to your computer and use it in GitHub Desktop.
Blacklist suspicious IPs in .htaccess in WordPress
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
<Files wp-login.php> | |
order deny,allow | |
deny from 123.123.123.123 | |
allow from all | |
</Files> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Replace 123.123.123.123 with the IP you want to block.