how can i prvent a folder from being browsed in the "httpd.conf"
file?
thnaks i nadvance
peleg
preventing forom a folder to be browsed
Moderator: General Moderators
By using Deny From All you can do wonders. In the .conf you might have something similiar to:
Code: Select all
<Directory /usr/users/forbidden>
Options Indexes MultiViews
AllowOverride None
Order Deny,Allow
Deny from All
</Directory>