views:

39

answers:

2

I want to disable directory browsing of /galerias folder and all subdirectories

Index of /galerias/409

* Parent Directory
* i1269372986681.jpg
* i1269372986682.jpg
* i1269372988680.jpg
+2  A: 

Create a .htaccess file with the following:

Options -Indexes
stimpie
+1  A: 

Add/Create an .htaccess file inside /galerias with this:

Options -Indexes
Álvaro G. Vicario