Fabien wrote: > > Hello. > I have downloaded and compiled the last version of Apache (1.3.6). > It works well, but I have a problem. > > I would like to see the index of my directory public_html > > <Directory /*/public_html> > IndexOptions FancyIndexing > Options Indexes > AllowOverride None > Order allow,deny > Allow from all > > </Directory>
It's OK, I found the solution : I used (like on original apache package) : <DirectoryMatch ^/home/.*/public_html> Options SymLinksIfOwnerMatch Indexes AllowOverride None </DirectoryMatch> Now, it works fine ! Fabien.

