Have you ever wonder how to restrict your Wordpress Dashboard login via IP address or IP ranges? You could possibly would like to refrain some user from accessing your Wordpress application especially WPMU where it is shared by multi users from all over the world.
Just create a .htaccess file and put it on your wp-admin folder and add below syntax as example below.
allow from “IP address or IP ranges”
The IP ranges added are the IP address that is allow to access the wp-admin folder or the Wordpress Dashboard.
———————————
<Limit GET HEAD POST>
order deny,allow
allow from 192.168.1.0/24
allow from 192.169.1.0/24
deny from all
</LIMIT>
———————————
Give it a try and have fun
Popularity: 100% [?]