我正在关注一个注册教程并使用电子邮件验证登录。 它工作正常,它会在提供的电子邮件ID上发送确认链接。 它显示:
我也试过添加alies但是没有用 我不知道如何解决它。请指导我。
文件结构:
C:.
│
│
│
└───signup-email-verification
│ class.user.php
│ dbconfig.php
│ fpass.php
│ home.php
│ index.php
│ logout.php
│ resetpass.php
│ signup.php
│ store-signup.php
│ tbl_users.sql
│ verify.php
│
├───bootstrap
│ ├───css
│ │ bootstrap-responsive.css
│ │ bootstrap-responsive.min.css
│ │ bootstrap.css
│ │ bootstrap.min.css
│ │
│ ├───img
│ │ glyphicons-halflings-white.png
│ │ glyphicons-halflings.png
│ │
│ └───js
│ bootstrap.js
│ bootstrap.min.js
│ jquery-1.9.1.min.js
│
└───mailer
class.phpmailer.php
class.pop3.php
class.smtp.php
我试图访问以下链接
localhost/drop2/signup-email-verification/store-signup.php
答案 0 :(得分:0)
正如您在评论中提到的,您正尝试使用以下网址访问store-signup.php
。
localhost/drop2/signup-email-verification/store-signup.php
现在,根据上述网址,您的应用应该是drop2
,而store-signup.php
位于signup-email-verification
文件夹下。这意味着,你的文件夹结构应该是
drop2
|
|--- signup-email-verification
|
|---store-signup.php
根据您发布的文件夹结构,您 不 拥有drop2
文件夹。
此外,您可能希望将项目文件夹放在服务器根文件夹下而不是C:驱动器中。