0

我想使用 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;
?>

任何帮助将非常感激。提前谢谢

4

1 回答 1

0

您只需按照以下链接中的说明进行操作

http://tools.dynamicdrive.com/password/

确保您需要 .htpasswd 文件的绝对路径

你可以通过echo __FILE__;

于 2012-08-09T16:47:21.553 回答