图像视图上的HTTP Basic Auth(.htaccess)

时间:2013-12-27 20:39:00

标签: .htaccess http authentication .htpasswd

我看到了这一点,我很想知道如何重新创建它。不幸的是,我不知道.htaccess。

在查看图像时,有一个HTTP Basic Auth样式对话框,要求输入某种身份验证(尽管实际上没有在任何地方提交)。

我很抱歉这个滑行问题,但我真的很想知道如何使用.htaccess或.htpasswd来完成这项工作。

感谢。

1 个答案:

答案 0 :(得分:0)

在你的apache网站conf中,添加如下内容:

Alias /image /path/to/img
 <Directory "/path/to/img">
     AuthType Basic
     AuthName "LoginImage"
     AuthUserFile /path/to/.htpasswd
     Require valid-user
  </Directory>

然后,使用以下命令创建.htpasswd文件:

htpasswd -c .htpasswd someusername

,系统会提示您创建密码。