|
发表于 2005-8-29 19:28:51
|
显示全部楼层
把目录中的内容列举出来是吧?修改httpd.conf(或apache.conf ) apache的配置文件.
配置文件中指定目录加Indexes 属性
Post by 来自[url
http://http://httpd.apache.org/docs/2.0/mod/core.html#directory[/url]
Indexes
If a URL which maps to a directory is requested, and there is no DirectoryIndex (e.g., index.html) in that directory, then mod_autoindex will return a formatted listing of the directory.
<Directory /web/docs>
Options Indexes FollowSymLinks
</Directory>
|
|