Maybe someone can shed some light on this for me. I am just trying to protect a directory with an .htaccess file but it is giving me problems. Here's the content of the .htaccess file:
AuthUserFile /var/adminusers
AuthGroupFile /dev/null
AuthName adminsection
AuthType Basic
<Limit GET>
require valid-user
</Limit>
When I try to access, it will prompt me for user and password. So that works. But every page I try to access in the directory, it prompt me for password again.
AuthUserFile /var/adminusers
AuthGroupFile /dev/null
AuthName adminsection
AuthType Basic
<Limit GET>
require valid-user
</Limit>
When I try to access, it will prompt me for user and password. So that works. But every page I try to access in the directory, it prompt me for password again.