gpt4 book ai didi

regex - 防止直接访问 .htaccess 文件

转载 作者:行者123 更新时间:2023-12-02 08:33:10 25 4
gpt4 key购买 nike

我需要阻止访问 .htaccess 文件。我的文件是:

# secure htaccess file
<Files .htaccess>
order allow,deny
deny from all
</Files>

# disable directory browsing
Options All -Indexes

当我检查 URL 时:

http://localhost/cms/htaccess

我看到.htaccess文件数据

如何阻止/拒绝访问.htaccess文件?

最佳答案

您正在阻止 .htaccess,但正在访问 http://localhost/cms/htaccess

尝试访问http://localhost/cms/.htaccess

如果您想阻止两者,请尝试使用正则表达式使用此 FilesMatch 指令:

<FilesMatch "\.?htaccess$">
order allow,deny
deny from all
</FilesMatch>

关于regex - 防止直接访问 .htaccess 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21622045/

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