实现步骤
1、修改/etc/apache/httpd.conf文件找到位于<Directory “/var/www/htdocs”>下面的如下内容
AllowOverride None修改为 AllowOverride AuthConfig |
htpasswd -c /etc/apache/passwords test按照提示输入两遍密码然后修改密码文件的权限
chown root.nobody /etc/apache/passwords chmod 640 /etc/apache/passwords |
AuthType Basic AuthName “By Invitation Only” AuthUserFile /etc/apache/passwords Require valid-user |
/etc/rc.d/rc.httpd restart现在你再次访问http://localhost/ftp的时候,就会提示你输入用户名和密码了。
注意:用htpasswd生成密码文件的时候,只要第一次用-c这个参数以后添加用户,不要使用-c这个参数。
标签: