hello
i am trying to restrict access to a login.php page by IP address
I have the following in the .htaccess file in the same directory , but it blocking everything including this ip - where did i go wrong ?!
this post is from this older one : SOLVED - Restricting IP access to a specific website page
i am trying to restrict access to a login.php page by IP address
I have the following in the .htaccess file in the same directory , but it blocking everything including this ip - where did i go wrong ?!
this post is from this older one : SOLVED - Restricting IP access to a specific website page
Code:
<Files login.php>
Order deny,allow
Deny from all
Allow from 102.68.xx.xx
</Files>