problem with AuthType Basic
Posted: Wed Mar 15, 2006 6:23 am
I need some help with this AuthType thing in apache.
I need to ask for user/password of one directory.
But one of it subdirectories needs to be visible without user/password.
I tried the apache documentaition but couldn't find my solution.
This is how I tried to do this.
But apperantly no luck.
Server version: Apache/2.0.54
I need to ask for user/password of one directory.
But one of it subdirectories needs to be visible without user/password.
I tried the apache documentaition but couldn't find my solution.
This is how I tried to do this.
But apperantly no luck.
Server version: Apache/2.0.54
Code: Select all
<Directory "full_path_whole_project/">
AllowOverride AuthConfig
AuthName "Secret"
AuthType Basic
require valid-user
</Directory>
<Directory "full_path_whole_project/no_auth/">
</Directory>