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
文件内容如下图: