我想使用HTTP身份验证为我的网站创建限制。我在我的www目录中写了.htaccess文件,现在我想创建一个htpasswd.php文件来创建一个密码和用户名。我必须将其保存在无法访问的目录中。有谁知道如何为登录创建htpasswd.php脚本和???
我已经有了这个:
<?php
// Password to be encrypted for a .htpasswd file
$clearTextPassword = 'some password';
// Encrypt password
$password = crypt($clearTextPassword, base64_encode($clearTextPassword));
// Print encrypted password
echo $password;
?>
任何帮助都会非常感激。 thx提前
答案 0 :(得分:0)
您只需按照以下链接
中的说明操作即可http://tools.dynamicdrive.com/password/
确保您需要绝对路径.htpasswd文件
你可以通过echo __FILE__;