Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法防止从根 .htaccess 列出目录?
我实际上使用这个->
Options -Indexes Options All -Indexes
两者都不适用于我的根目录
仅当我为每个文件夹创建一个 .htaccess 时才有效,我的脚本创建动态文件夹并且不是为我猜的每个文件夹创建创建一个的好方法。
谢谢
大卫
在根目录中创建一个 .htaccess 文件。然后将这段代码放入其中:
Options -Indexes ErrorDocument 403 /index.php
如果有人试图直接访问您的(子)文件夹之一,这样做会阻止所有目录的列表并每次重定向到您的 index.php 文件。如果它仍然不起作用,则可能是您的主机设置有问题。