这是我的项目结构, 类 - > forgotpassword.php ,,
index.php位于项目的外部。 要求是,每当非注册用户点击forgetpassword链接时。它应该将他重定向到我的SIGNUP页面。
我正在做的是,
else{
//$link_address = '';
echo 'Hi user, You are not yet registered to Wings2Roots<br><br><a href="index.php"><br/>Please click here to SIGNUP</a>';
}
因此,每当我点击SIGNUP时,它都会将我重定向到http://localhost/ProjectName/classes/index.php。结果它显示File not found。 这里的问题是,我不想在那个网址中使用这些类。
答案 0 :(得分:2)
试试这个..
<a href="../index.php"><br/>Please click here to SIGNUP</a>
答案 1 :(得分:0)
您可以更改index.php
。到/index.php
。
<a href="/index.php"><br/>Please click here to SIGNUP</a>
或者,您可以创建一个始终指向根目录的base_url()
函数,然后执行以下操作:
<a href="<?php echo base_url();?>/index.php"><br/>Please click here to SIGNUP</a>