您当前的位置:首页 > 计算机 > 服务器 > Apache

Apache设置密码访问web文件

时间:03-21来源:作者:点击数:

1、httpd.conf配置文件开启进行身份验证。

2、在需要认证目录下如D:\Git建立 .htaccess 文件

.htaccess文件内容配置如下:

AuthName "Login"

AuthType basic

AuthUserFile "D:\user.txt"

require valid-user

说明:用户密码信息保存在"D:\user.txt",不要将它放在网站目录,此目录可以更改。

3、用Apache2\bin\htpasswd.exe 来生成密码

如下:生成mtjk用户的密码

D:\httpd-2.4.53-x64\Apache24\bin>htpasswd -cmdps d:\user.txt mtjk
Warning: CRYPT algorithm not supported on this platform.
Automatically using MD5 format.
New password: ****
Re-type new password: ****
Adding password for user mtjk

D:\httpd-2.4.53-x64\Apache24\bin>

到此配置结束!!!

密码文件在D:\user.txt

文件内容如下图:

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门