|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
On Tuesday 07 May 2002 11:51 am, you wrote:
> Hi, I'm drawing a blank here. Maybe I'm having temporary amnesia or
> something, but under Apache, how do I make a directory browsable? Meaning
> allow users to see a listing of the files in a directory and its
> subdirectories.
>
> Thanks,
> Wayne
if the perms for all dirs and files are world readable, then add
In /etc/httpd/conf/httpd.conf
#NOTE this will make all sub-directories browsable!
add :
<Directory /path/to/directory/you/want/to/brouse>
Options Indexes
<Limit GET OPTIONS>
Order deny,allow
Allow from all
</Limit>
</Directory>
--
mike.h@acm.org
mike.h@stemik.com
http://www.stemik.com/~mike.h
______________________________________________________________________
Philadelphia Linux Users Group - http://www.phillylinux.org
Announcements-http://lists.phillylinux.org/mail/listinfo/plug-announce
General Discussion - http://lists.phillylinux.org/mail/listinfo/plug
|
|