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.
我有一个网络服务器,我需要为没有任何索引文件的所有文件夹(包括子文件夹)创建一个 403 禁止,我知道我可以使用 .htaccess 来做到这一点,但据我所知它仅用于主文件夹,而不是子文件夹。如何阻止访问没有索引文件的网站文件夹?
谢谢
即使使用DirectoryIndex on此规则也应该对您有用:
DirectoryIndex on
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{DOCUMENT_ROOT}/$1/index.php !-f RewriteRule ^(.+?)/?$ - [F]