Is it possible to lock for example the site down with basic auth and lock a subdirectory of it with a different basic auth? Example: http://examplesite.com/ <LocationMatch "/*"> AuthType Basic AuthName "Main Gate" AuthBasicProvider file AuthUserFile /etc/accounts Require valid-user </LocationMatch> http://examplesite.com/private/ <LocationMatch "/private"> AuthType Basic AuthName "Members Only" AuthBasicProvider file AuthUserFile /etc/private.accts Require valid-user </LocationMatch> - John
I succeeded in doing this on one system but for some reason the other system ignores it but it uses a different type of auth for /*