红联Linux门户
Linux帮助

VMware下Linux虚拟机实现浏览器登陆认证

发布时间:2015-02-27 09:59:11来源:linux网站作者:ethnicitybeta

这里指的是类似登陆数据库时出来的那个验证框,在虚拟机下用Linux实现

[root@linux ~]# mkdir /var/www/html/protect

[root@linux ~]#echo "ceshi" /var/www/html/protect/index.html

[root@linux ~]# mkdir /var/www/apache.passwd


编辑httpd.conf添加以下的一段话

[root@linux ~]# vi /etc/httpd/conf/httpd.conf

确保有这段话

<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>


然后找个合适的地方添加下边这段话

<Directory "/var/www/html/protect">
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>


接下来

[root@linux ~]# vi /var/www/html/protect/.htaccess
AuthName       "protect wanyan by .htaccess"
Authtype        Basic
AuthUserFile    /var/www/apache.passwd
require         valid-user


然后添加登陆的用户名和密码

[root@linux ~]# htpasswd /var/www/apache.passwd username
New password:
Re-type new password:
Adding password for user username


接着重启httpd

[root@linux ~]#apachectl restart或者[root@linux ~]#/etc/init.d/httpd restart

最后在浏览器输入http://ip/protect即可测试验证(ip为你的Linux主机ip)