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?