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 中的目录?
我不是指目录列表,而是指目录中的所有内容以及目录本身?它应该给出 503 或 404 错误。
我正在谈论/img-sys并且/java-sys显然不存在(我没有创建它们),但在访问时仍然给出白屏而不是 404 错误。
/img-sys
/java-sys
把它放在.htaccess文件的顶部:
.htaccess
RewriteRule ^(img-sys|java-sys) - [R=404]
这会做到的。它只会因403 ForbiddenHTTP 响应代码而失败。把它放在你的VirtualHost块中:
403 Forbidden
VirtualHost
<LocationMatch "/(img|java)-sys"> Order allow,deny Deny from all </LocationMatch>