我在 xampp 上有本地网站(php),我想设置用户密码登录保护,如下所示
我在 .htaccess 中设置:
Options -Indexes
allow from 127.0.0.0
AuthName "Password Protected Area"
AuthUserFile /htaccess/.htpasswd
AuthType Basic
Require valid-user
在 .htpasswd 中我设置:
user:$2y$10$L7cqU20P.fbfHwIL7cqU20PsvrhnN.Pb1rAxR50y
但我在输入用户密码后收到此错误:
我用这个但不起作用。当我进入 http:127.0.0.1/hi
该工作但当我进入子目录时不工作(http:127.0.0.1/hi/test1
)并给出 500 错误。
白衣非少年