> Is it possible to disable Directory Listing for a directory and its 
> sub-directory except one of
> them?

Sure. You can do something like this. Pls set your correct paths.

# Disable directory listing for myparentdir and all of its subdirs
<Directory /var/www/html/myparentdir>
   Options -Indexes
   Require all granted
</Directory>

# Just enable directory listing for this subdir
<Directory /var/www/html/myparentdir/Dir2>
   Options +Indexes
</Directory>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to