gpt4 book ai didi

linux - 如何禁用 Apache 中的目录列表?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:55 26 4
gpt4 key购买 nike

Apache 是否有全局禁用目录列表的选项? (但它仍然允许我使用 index.php 作为我的主页)

注意:我有很多虚拟主机和子域,什么都没有。

最佳答案

是的,这是可能的。您应该将 Options 指令与 -Indexes 参数一起使用

例如在Centos/etc/httpd/conf/httpd.conf 更新目录/为:

# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
<Directory />
Options FollowSymLinks -Indexes
AllowOverride None
</Directory>

这样所有的子配置都会受到这个限制。

请注意,如果指令 AllowOverride 设置为 Indexes 或 All(此效果会覆盖 .htaccess 文件中的参数),则每个 child 都可以覆盖它

关于linux - 如何禁用 Apache 中的目录列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26101344/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com