使用 Apache,是否可以为非文件夹 URL 生成目录列表?

使用 Apache,是否可以为非文件夹 URL 生成目录列表?

如果您访问没有 index.html 的文件夹,Apache 允许您创建目录列表(配置时)。

我想知道的是,是否可以从不同的 URL 获取相同的列表?我已经在使用 index.html 和想要保持这种状态

即,这就是我所寻找的:

http://example.com/blar/-> 加载我的 index.html 页面(不想改变) http://example.com/blar/directory_list(我希望这个 url 能够呈现 apache 目录列表)

答案1

我会用地点覆盖目錄索引指示。

DocumentRoot /var/www
...
Alias /bar /var/www/foo
<Location /bar>
    DirectoryIndex disabled
</Location>

现在http://domain.tld/foo/将显示你的index.html,同时http://domain.tld/bar/将为您提供目录索引。假设您的其他配置正确。

相关内容