PDA

View Full Version : Avoid the listing of a directory


David G.
01-14-2006, 08:26 AM
Hi, I'm trying to avoid the listing of a directory, for example /img, but I want the images to be accessible from the web...

Any help on how to do this?.

Thanks.

Tom
01-16-2006, 06:33 AM
There are two ways to accomplish this:

1. Create an empty index.html file. It will not allow directory listing if index.html file is present.

2. Create a .htaccess file, and type inside:

Options -Indexes

This will deny directory listing inside your folder.