Forum Moderators: phranque
I am trying to implement Basic Authorization on a Linux server and at the same time allow the user/visitor to navigate into sub-directories without being prompted to login a second or third time.
I have added "AuthAuthoritative Off" to my .htaccess file with no results. Here are the contents of my .htaccess file ...
AuthName "Password Protected Area"
AuthType Basic
AuthUserFile /usr/local/webpassword/wp002.dat
AuthAuthoritative Off
Require valid-user
I would appreciate any help and suggestion.
Thanks in advance,
Kirk
So, if that is the case (you've got a simple auth environment), then you might want to check for a few common problems, such as the auth domain not including the whole directory structure (because the auth is done at the wrong directory level (e.g. in a sibling directory to the navigation target, rather than its parent) and problems such as authenticating in example.com, and then trying to navigate to or within www.example.com -- an entirely different authentication domain.
Jim