I have seen several websites: for example http://www.website.com/images/pic001.jpg And when I try to access http://www.website.com/images/ is prohibited. That is exactly what I want to protect my folders from curious. How I can I accomplish this? Adding some instructions into the. htaccess? Changing Folder permissions? Thanks, I hope I explained well, and sorry for my horrible way of writing in English P.D.: My website is hosted on 000webhost. Grettings!
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can add Options -Indexes
into the .htaccess file in the images folder, this results in a forbidden message if one tries to access /images/, but access to /images/pic001.jpg is still possible.
For more information see here: http://wiki.apache.org/httpd/DirectoryListings
回答2:
You likely mean to allow access to the images but preventing browsing. You can disable browsing of a folder when there is no index if you add Options -Indexes
into your .htaccess in your images folder.