Hi,
I have been able to password protect a directory on my website using the 50AddSecureIbayFolder in my httpd.conf:
<Directory /home/e-smith/files/ibays/Primary/html/links/admin>
AuthUserFile /etc/htpasswd
AuthName "admin links"
AuthType Basic
<Limit GET>
order deny,allow
require user admin
</Limit>
</Directory>
But how do I would also like to password protect a single page (a .php file in this case).
Does anyone know how to do this?
Thanks.