为了保护我的网站,我要做的是在.htaccess
目录中创建此/var/www/html/
文件
AuthType Basic
AuthName "One does not simply"
AuthUserFile /home/user/.htpasswd
Require valid-user
,然后通过运行命令htpasswd -c /home/blah/.htpasswd alex
但是这不起作用。实际上,当我访问该网站时,没有弹出任何身份验证弹出窗口。
我正在使用全新安装的Ubuntu 18.04在完全干净的 VPS上执行此操作,并且只安装了apache2
答案 0 :(得分:0)
如果您真的想使其简单:
AuthType Basic
AuthName "My page is password protected!"
AuthUserFile /home/user/.htpasswd
Require valid-user
创建一个 .htpasswd 文件,为用户名和密码添加以下内容:
karrot:mypassword
确保在正确的文件夹内添加.htpasswd。
希望这会有所帮助。