-
-
Save rafaysansari/d50ed4d18bd40f960f8e to your computer and use it in GitHub Desktop.
Restricting access to the WordPress login page using Static IP Address(es). Code caters for redirect loops with the inclusion of error pages.
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
ErrorDocument 401 /your-site's-path/index.php?error=404 | |
ErrorDocument 403 /your-site's-path/index.php?error=404 | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR] | |
RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$ | |
RewriteCond %{REMOTE_ADDR} !^12\.345\.678\.90 | |
RewriteCond %{REMOTE_ADDR} !^IP Address InsertTwo$ | |
RewriteCond %{REMOTE_ADDR} !^IP Address InsertThree$ | |
RewriteRule ^(.*)$ - [R=403,L] | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you bro