我正在运行Windows NT服务器,仅对其具有FTP访问权限。我正在尝试使用.htaccess / .htpasswd密码保护目录,但是无论是否安装了目录,我仍然能够在没有提示的情况下访问目录中的页面。
我的.htaccess看起来像这样。
ErrorDocument 401 /401.html
AuthType Basic
AuthName "Password Required"
# path has been blocked out
AuthUserFile \hshome\xxx\xxx\xxx/.htpasswd
Options +FollowSymLinks
Order Deny,Allow
Satisfy any
Deny from All
Require valid-user
Allow from env=allow
什么会导致这种情况发生?