Howto: Disable directory listing using .htaccess
If you want to preventing directory listing / prevent your server from displaying entire content of directory, here some tips :
1. Add an empty file named index.htm or index.html or index.php; this will show a blank page for the directory.
2. Add / edit your .htaccess file, and add this code
Options -Indexes
this will throw a 403 [...]