如何在符号链接中忽略目录索引文件?

时间:2011-05-03 08:54:10

标签: apache .htaccess symlink httpd.conf

我向根目录发了符号链接:ln -s / link

该目录包含索引文件(index.php,index.html)等..,

我不能列出内容,我直接得到索引..

即使存在索引文件,我也想知道如何获取内容列表。

1 个答案:

答案 0 :(得分:1)

Apache使用的索引文件由 DirectoryIndex 指令驱动。如果您在VirtualHost或Directory中使用不存在的文件名更改此指令,则会阻止apache查找此文件。

因此,例如,假设您希望将此行为用于目录/ foo

<Directory /foo>
   # we need this option activated the get automatic listing
   Option +Indexes
   DirectoryIndex not_a_directory_index.does_not_exists.file
</Directory>