gpt4 book ai didi

http - .htaccess 按文件类型限制访问

转载 作者:可可西里 更新时间:2023-11-01 17:04:01 25 4
gpt4 key购买 nike

我对 .htaccess 文件没有太多经验,我想要一个不允许访问 (403 Forbiden) 文件夹及其所有子文件夹中的 .myext 文件的文件。

谁能给我写一个快速规则?

最佳答案

您可以使用 <FilesMatch> Deny :

<FilesMatch "\.myext$">
Deny from all
</FilesMatch>

您可能还需要更改 order of how Allow and Deny rules are applied .

另一种选择是使用 mod_rewrite :

RewriteEngine on
RewriteRule .+\.myext$ - [F]

要使这些指令仅应用于特定目录,请将它们放入该特定目录的 .htaccess 文件中。使用 mod_rewrite,您还可以在规则模式中指定路径,例如:

RewriteRule ^foo/bar/.+\.myext$ - [F]

关于http - .htaccess 按文件类型限制访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4278637/

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