vote up 1 vote down star

I have password protected my entire website using .htaccess but I would like to expose one of the sub directories so that it can be viewed without a password.

How can I disable htaccess password protection for a sub directory? Specifically what is the .htaccess syntax.

Here is my .htaccess file that is placed in the root of my ftp

AuthName "Site Administratrion"
AuthUserFile /dir/.htpasswd
AuthGroupFile /dev/null

AuthName secure
AuthType Basic
require user username1
order allow,deny
allow from all
flag

This might be better suited for serverfault. – beggs Sep 16 at 6:58

2 Answers

vote up 3 vote down check

You need to create a new .htaccess in the concerned directory and include "Satisfy Any" directive to it.

link|flag
thanks RageZ. worked like a charm – justinl Sep 16 at 7:07
you are welcome. – RageZ Sep 16 at 7:08
vote up 4 vote down

You need to add another .htaccess file to the subdirectory that overrides the authentication. .htaccess cascades upwards, i.e. it will look in the current folder, then go up a level and so on.

link|flag
do you happen to know the syntax? I understand the concept but do not know how to implement it. – justinl Sep 16 at 7:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.