我想使用apache身份验证保护目录,但是我做了一个文件:
<目录/路径/到/ dir>
AuthType Basic
AuthName "Private Pages"
AuthBasicProvider file
AuthUserFile /path/to/.htpasswd
require user userid
<FilesMatch "^exception.html$">
Order Allow,Deny
allow from All
</FilesMatch>
&LT; /目录&gt;
但它不起作用所有文件都要求输入密码。 我在文件名中的点之前也尝试使用\并使用:
<File exception.html>
没有任何帮助它要求所有文件的密码,包括exception.html
我做错了什么?
由于
答案 0 :(得分:0)
您应该在serverfault上查看类似的问题:
How to use basic auth for single file in otherwise forbidden Apache directory?