apache configure question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alex79
    Confirmed User
    • Jun 2002
    • 996

    #1

    apache configure question

    i've configured apache to allow directory browsing with next code:

    PHP Code:
    <Directory "/">
        AllowOverride FileInfo AuthConfig Limit
        Options Indexes +FollowSymLinks -MultiViews ExecCGI +Includes
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory> 
    
    but when i access domain.com (after i removed the index file) i get an error message like : "Forbidden You don't have permission to access / on this server."
    if i access any directory domain.com/directory i can see the directory content (i can browse any directories but i can't browse the domain.com directory)

    Anybody know what's wrong?
  • maddox
    Confirmed User
    • Jan 2004
    • 648

    #2
    Probably your <Directory> value is wrong, change it to the path to your domain.com

    Comment

    Working...