在一个文件夹中启用目录索引

时间:2011-08-01 13:30:42

标签: apache

我无法管理httpd.conf以便在一个特定文件夹中启用目录索引:

<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
IndexIgnore *

<Directory "/srv/http/testsite/images">
Options FollowSymLinks +Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>

怎么了?

2 个答案:

答案 0 :(得分:2)

我认为你想要的是:

<Directory />
  Options FollowSymLinks -Indexes
  AllowOverride All
  Order deny,allow
  Deny from all
</Directory>

<Directory "/srv/http/testsite/images">
  Options FollowSymLinks +Indexes
  AllowOverride All
  Order allow,deny
  Allow from all
</Directory>

答案 1 :(得分:0)

它可能也不起作用取决于〜你期望成为索引文件的内容......你应该能够将这些内容添加到你的.htaccess中

DirectoryIndex index.html index.html.var index.shtml index.php index.htm index.cfm index.cfml

我认为index.htm不是默认值,可能是缺少的。