我将htaccess与htpasswd结合起来只保护根目录的两个子目录,起初工作正常,但突然之间它要求在根目录(又名主页网站)上输入用户名和密码。
我的树视图:`
/website (root)
/cms
/crm
/email
现在我使用htaccess和htpasswd保护了CMS和CRM目录,直到现在一直运行良好。
.htpasswd文件:
user:hashed_pass
.htaccess文件:
AuthName "Welcome/auth text"
AuthUserFile /path/to/.htpasswd
AuthType Basic
require valid-user