If someone knows my url of the admin page such as www.example.com/admin.php, then they will easily access the page by directly accesing that url. How to restrict this. Pleas
You can block all IP to go in admin panel except your admins IPs Write something like this:
order allow,deny deny from all allow from {your IP} allow from {your other admin's IP}
This should be work