Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 php 创建一个管理面板。但我想要做的是,当任何用户点击主页时,首先询问他们的用户名和密码是否都正确,然后显示主页的内容,否则不显示。
您可以通过使用 Htaccess 密码保护来实现这一点。
创建一个 .htaccess 文件
AuthUserFile /usr/somewhere/.htpasswd AuthType Basic AuthName "My Files" Require valid-user
创建一个 .htpasswd 文件(在您上面提到的路径中)
mark:test1234
你不需要 PHP 的东西来做到这一点!
参考http://weavervsworld.com/docs/other/passprotect.html