希望你没事。
我的 public_html 文件夹中有一个子文件夹。在子文件夹中,我有一个带有以下代码的 .htaccess 文件:
# Disable indexing:
Options All -Indexes
# Ignore every file:
IndexIgnore *
# Prevent access to any file:
<FilesMatch "^.*$">
Order Allow,Deny
Deny from all
</FilesMatch>
现在,当我浏览到子文件夹时,例如www.mysite.com/subfolder/myfile.php,我显示了我网站的 index.html 页面!这真的会发生吗?!
有人可以告诉我我需要做什么来显示一个通用的“不允许访问”页面吗?
在此先感谢您的帮助。