12 月 182016
 

 

添加密码配置文件及用户帐号

# htpasswd -c /usr/local/apache/passwd/passwords rbowen
New password: mypassword
Re-type new password: mypassword
Adding password for user rbowen

修改<Directory “…”>配置开启基本登录认证

AuthType Basic
AuthName "Restricted Files"
# (Following line optional)
AuthBasicProvider file
AuthUserFile "/usr/local/apache/passwd/passwords"
Require user rbowen

Options None
AllowOverride None
#Require all granted