Click to See Complete Forum and Search --> : .htaccess


Morat
02-01-2003, 04:31 PM
Slight hassle with formatting my .htaccess file ...
atm Im password protecting 1 directory .. though I need to allow access to its sub-dirs containing images. Current htaccess looks like this :

# Password protect Directory /news
<Directory /news>
AuthName "members"
AuthType Basic
AuthUserFile .passwd
require valid-user
</Directory>

How would I modify either this htaccess to allow access to its sub-dirs or how would I format another htaccess in the relevant sub-dirs to allow access ?

Help much appreciated