当前位置:首页 > PHP教程 > Apach > 列表

Apache如何增加.htaccess文件增加用户认证

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-23 16:48:02 浏览: 评论:0 

首先用htpasswd创建一个密码文件:比如文件名叫做my.passwd

/home/apache/bin/htpasswd -c -b my.passwd myusername mypassword

如果增加帐号:/home/apache/bin/htpasswd -b my.passwd anotherusername anotherpassword

将my.passwd上传到一个非发布路径下。

比如你的物理WEB根目录的上一级

/home/apache/conf/my.passwd

创建 .htaccess

  1. AuthName "My Authorization Directory" 
  2. AuthType Basic 
  3. AuthUserFile /home/apache/conf/my.passwd 
  4. Require valid-user 

将这个文件上传到你需要进行用户认证的目录:

/home/apache/htdocs/admin/.htaccess
 
这样这个目录的访问就需要认证了。

Tags: Apache htaccess 用户认证

分享到: