Forum Moderators: phranque
It's easy to find instructions for requiring authentication for specific subdirectories; how can I just restrict the root diretory and allow open access to all of the subdirectories?
put .htaccess in root directory allowing you and denying everyone else,
and put in each subdirectories .htaccess allowing all users to get contents.
or try:
<Directory /your root>
some access for you here
</Directory>
<Directory /your root/*/>
allow all users here
</Directory>
maybe the * sign will do the trick.