Prevent Directory Listing using .htaccess
- Sunday, March 9, 2008, 5:39
- htaccess, tips and technique
- 10 comments
What is directory listing ?
As we know, most of the website contains “images” folder inside the root folder. If we type “www.somesite.com/images” in the browser and it shows the listing of the files in the browser like the picture below which means that directory listing is allowed on that web server. It’s better not to show the files inside the directory of the web sever for the security purpose.
Why and what is prevent directory listing ?
Most of the web server are configured in such a way that it doesn’t show the listing of the directory but some of them are not.In some cases, you don’t want to allow users to view the files of the particular directry in such a direct way and prevent the listing of that directory.
How to prevent directory listing ?
Put the any one of following code into the .htaccess file
Options -Indexes
or
IndexIgnore *
If you place that .htaccess file in the root folder then direcotry listing is prevented of the sub-folder as well. And if you place the .htaccess file inside the “images” folder then directory listing are prevented of that particular directory only.
Let’s suppose that you don’t want to list “.jpp , .gif and .zip” and you don’t care about listing other files of that directory then you can out the following code inside .htaccess.
IndexIgnore *.gif *.jpg *.zip
Finally, If your server is setup with preventing directory listing then you can add the following code in the .htaccess file to allow the directory listing.
Options +Indexes
Popularity: 8% [?]
Related Posts
» Change default directory page using .htaccess
» Prevent your website being displayed inside IFRAME
» 5 useful url rewriting examples using .htaccess
» Uploading large(big) files in PHP using .htaccess
10 Comments on “Prevent Directory Listing using .htaccess”
Trackbacks
- Prevent Directory Listing using .htaccess | Website Directory
- Change default directory page ( index page ) using htaccess

Hi Roshan,
Thanks for this nice article. I have tried ur example but it is not working. Could you tell me how to create and use .htaccess file.
Plz help me
Thanks in advance
put Options -Indexes in .htaccess and it should work….but overriding should be allowed in httpd.conf file..
Hi, thanks for this tip.
Its works for me….
Thanks roshan,
hi.. this is a very useful article
thank you dude.
Hi Roshan
Such a Nice atricle. Thanks for the sharing some useful info.
Thanks! so much useful
Thanx alot