I've look all over, but keeps running into same info that talks about directory level IP restriction, which usually looks something like this:
Order Deny,Allow Deny from all Allow from 123.123.123.123   Is it possible to have same type of access restriction tied to a page/document?
Step 1: Generate the Country's IP Addresses Head to Country IP Blocks homepage. Select the countries you want to block or allow. On the Select Format section, choose Apache . htaccess Deny or Apache .
This will allow either someone from IP 127.0.0.1 or logged as a valid user. Stick it either in your config or .htaccess file.
    <Files learn.php>         Satisfy any         Order deny,allow         Deny from all         Allow from 127.0.0.1          AuthType Basic         AuthName "private"         AuthUserFile /var/www/phpexperts.pro/.htpasswd         AuthGroupFile /dev/null         Require valid-user     </Files>   IP Alone:
    <Files learn.php>         Order deny,allow         Deny from all         Allow from 127.0.0.1     </Files>   That definitely answers your question.
I think the directive needs to be:
Order deny,allow   for the answer above to work (at least for the IP Alone solution).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With