Re: directory listing
"MikeDawg" <mikedawg@gmail.com> escreveu na mensagem
news:1160670855.676150.72010@m7g2000cwm.googlegrou ps.com...
>
> miguel-lopes wrote:
> > Hi
> > I have apache 2.0.54 working fine but I need to do directory listing on
only
> > 1 directory how cam I do it??
> >
> > The idea is to creat a directory called downloads and let people
navigate in
> > this directory and download the files it will have password protection.
> >
> >
> > Thanks
>
> There are a couple ways to do this, but pretty much, the key is to use
> Options +indexes in order to get a directory listing.
>
> You can do this either from an .htaccess file, or you can do this from
> the main apache httpd.conf file.
>
Thanks!
Found this sintax on the net and tryied it
<Directory /downloads>
Options FollowSymLinks Indexes
AllowOverride None
</Directory >
But still doesn't work what am I doing wrong??
thanks
|