> 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: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to