CodeIgniter登录系统无法正常运行404错误请求

时间:2013-02-18 17:20:25

标签: php codeigniter login http-status-code-404 bad-request

使用CodeIgniter构建一个简单的登录系统。

我在尝试提交表单数据时收到此错误

找不到404页面 找不到您请求的页面。

我不知道为什么!这是我的表格:

     <?php echo form_open('VerifyLogin/index'); ?>
     <label for="username">Username:</label>
     <input type="text" size="20" id="username" name="username"/>
     <br/>
     <label for="password">Password:</label>
     <input type="password" size="20" id="passowrd" name="password"/>
     <br/>
     <input type="submit" value="Login"/></form>

这是表单操作 - &gt;

 http://localhost/LoginTut/index.php/VerifyLogin/index

应该将用户带到新页面。我不知道为什么会出现这个问题!!有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我刚看了你的另一篇文章,发现你把你的控制器命名为“verify_login.php”,但你的班级名为“VerifyLogin”。在Codeigniter中,您的类需要与您的文件命名相同,只需使用大写字母。为了使该页面正常工作,您应该将控制器文件重命名为“verifyLogin.php”或将您的类重命名为“Verify_Login”。