Link to home
Start Free TrialLog in
Avatar of jpchen
jpchen

asked on

Browsing Directory

Hi,
  I have these configinformation in my httpd.conf.  I don't know how to disable when user try to browsing the directry.  
==================================
DocumentRoot "/usr/local/apache/htdocs"

<Directory />
    Options FollowSymLinks Includes Indexes
    AllowOverride None
</Directory>


<Directory "/usr/local/apache/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from All
</Directory>
==================================

Thanks!!


ASKER CERTIFIED SOLUTION
Avatar of jlevie
jlevie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jpchen
jpchen

ASKER

thanks!