hiding login page
-
On all my sites I use a little code in order to hide my login page:
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} ^(.*)?wp-login\.php(.*)$ [OR] RewriteCond %{REQUEST_URI} ^(.*)?wp-admin$ RewriteCond %{REMOTE_ADDR} !^00\.000\.00\.000$ RewriteRule ^(.*)$ - [R=403,L] </IfModule>However, I can see that scammers are able to view it and attempt logins.
I know it’s just a little security hack, but why isn’t it working at its best?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘hiding login page’ is closed to new replies.