gpt4 book ai didi

apache - 允许访问目录

转载 作者:行者123 更新时间:2023-12-05 03:09:52 26 4
gpt4 key购买 nike

我可以很容易地找到很多 .httaccess 阻塞示例,但在我的情况下,我实际上会做相反的事情,并允许从匹配 (^|/)/thumbs/(/|$)

If you have a directory named 'blah' that you want to block, but it can occur anywhere in your directory tree, use the following: RewriteEngine On RewriteRule (^|/)blah(/|$) - [F]

有谁知道如何做到这一点吗?

最佳答案

好吧,如果你想允许 /thumbs/目录,这首先取决于它们是如何被阻止的。如果他们被普通的 Apache 访问权限阻止,那么类似这样的事情就可以做到,但必须在根级别或在 <VirtualHost> 中进入主服务器配置。而不是 .htaccess文件。

<DirectoryMatch "/thumbs/">
Require all granted
</DirectoryMatch>

或者对于 2.4 之前的 Apache:

<DirectoryMatch "/thumbs/">
Order allow,deny
Allow from all
</DirectoryMatch>

允许与使用您引用的禁止响应进行阻止完全不同。您必须问为什么它在 Web 文档根目录中是不允许的?然后打开那个方 block 。

关于apache - 允许访问目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41523609/

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