Hi!
How can I modify httpd.conf (???) for this problem:
Who access www.name.com/images/ (for example) can see the folder content, but I don't want this... and I don't want to put in every folder an index.html
Any sollutions?
Thanks!
Hi!
How can I modify httpd.conf (???) for this problem:
Who access www.name.com/images/ (for example) can see the folder content, but I don't want this... and I don't want to put in every folder an index.html
Any sollutions?
Thanks!
Put a .htaccess file in the public_html directory with this as its sole contents:
Options -Indexes
If you want to disable it server wide, you can put that .htaccess file in the /home directory.
Marty Hoskins
TLC Web Enterprises
.... or you can put the Options -Indexes line in your httpd.conf.
Work with .htaccess.
Thank you very much!