gpt4 book ai didi

authentication - 除了使用 .htaccess 的文件之外,我如何要求所有文件的密码?

转载 作者:行者123 更新时间:2023-12-04 01:46:10 27 4
gpt4 key购买 nike

我有一个正在开发的新网站,客户想要保密,但与此同时,我想放置一个包含一些信息的正在 build 中的页面。我想让除 index.html 之外的所有内容都需要用户/密码——所有人都可以使用 index.html。

我有以下内容,但我不确定我需要添加什么:

AuthName "Restricted Area"
AuthType Basic
AuthUserFile /path/to/file/.htpasswd
AuthGroupFile /dev/null
require valid-user

有太多文件和可能的新文件说“对于这组文件需要用户/密码”。

我认为它与类似的事情有关:
<Files index.html>
order deny,allow
allow from all
</Files>

但我不确定如何。

最佳答案

AuthName "Restricted Area"
AuthType Basic
AuthUserFile /path/to/file/.htpasswd
AuthGroupFile /dev/null

<Files "*">
Require valid-user
</Files>

<Files "index.html">
Allow from all
Satisfy any
</Files>

关于authentication - 除了使用 .htaccess 的文件之外,我如何要求所有文件的密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/490920/

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