0

我的 .htaccess 中有以下内容:

# "-Indexes" will have Apache block users from browsing folders without a
# default document Usually you should leave this activated, because you
# shouldn't allow everybody to surf through every folder on your server (which
# includes rather private places like CMS system folders).
<IfModule mod_autoindex.c>
  Options -Indexes
</IfModule>

但是,我有一个没有索引文件的目录(我更喜欢保持这种方式),我需要启用访问。如何从上面的代码中排除这个目录?

4

2 回答 2

1

在该目录中创建一个 .htaccess 文件,并在其中放入以下内容

<IfModule mod_autoindex.c>
  Options +Indexes
</IfModule>
于 2016-01-18T18:54:09.747 回答
0

尽管有以下评论(我从其他人那里得到了这段代码):

# "-Indexes" will have Apache block users from browsing folders without a
# default document

...此代码不会阻止用户访问没有索引文件的目录中的文件。因此,我不需要从上面的代码中排除我的目录。

例如,example.com/testdir 没有索引文件。但是,我可以访问 example.com/testdir/testfile.txt

于 2016-01-26T18:39:43.943 回答