Add this php script in a php file and save in your old admin login location.
<? $administor = $_SERVER[‘REMOTE_ADDR’];
if (preg_match(“/nnn.nnn.nnn.nnn/”,$administor)) { header(‘Location: http://www.go.in’);
} else { header(‘Location: http://www.go.away’);
}; ?>
When the php file is executed, it will redirect IP’s that do not match.
This is useful if you forgot and typed in the old login location instead.
* Replace nnn.nnn.nnn.nnn with your ip address.