需求:单用户访问网站的某个目录,需要使用帐号密码来登录才能访问。
一、编辑虚拟主机的配置文件,添加目录级访问限制
<Directory "/var/www/html/demo"> Options -Indexes FollowSymLinks AllowOverride AuthConfig Order allow,deny Allow from All AuthName "Login Notice" —— 认证时显示的提示 AuthType Basic —— 认证类型 AuthUserFile /etc/httpd/conf.d/htpasswd —— 用户配置文件 require valid-