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.
我对我的密码重置链接有疑问。到目前为止,我已经设法使用 sha256 生成一个随机令牌,将其附加到 URL - domain.com/reset/randomtoken - 并将链接通过电子邮件发送给相应的用户。我的问题是,我将使用哪个函数将其转到 reset.php,而不是认为有一个名为 domain.com/reset/randomtoken 的目录。在此先感谢,我仍然是一个菜鸟。
配置您的 Web 服务器(Apache、nginx 等)以将该路径重定向到您的 PHP 文件,或者让您的生活更轻松并生成一个如下所示的链接:
domain.com/reset.php?token=randomtoken
然后用于$_GET['token']检索值。
$_GET['token']