Linux apache目录添加密码的具体实现步骤:
实例一:允许一个用户访问一个目录
1.使用htpasswd建立用户文件:
$ htpasswd -c /data/httpd/secr/.htpasswd user
此程序会询问用户“user1”的口令,你输入“passwd”,两次生效。
2.建立.htaccess文件
用“vi /log/image/www/huodong/erge/admin/.htaccess”命令建立.htaccess文件,并写入以下几行:
AuthName My Friend Only (注:这个名字是任取的)
AuthType Basic
AuthUserFile /data/httpd/secr/.htpasswd
require user user
最后设置文件.htpasswd和.htaccess的文件权限,确保Apache用户有读的权限这样就完成了网页密码设置的工作。
3.修改httpd.conf文件:
用"vi /data/httpd/conf/httpd.conf"文件,并添加一下几行:
Options Indexes FollowSymLinks
AllowOverride authconfig
Order allow,deny
Allow from all
#
#AccessFileName .htpaccess
#AllowOverride ALL
#