使用 CodeIgniter 搭建一个简单的登录系统。
当我尝试提交表单数据时出现此错误
404 Page Not Found 找不到您请求的页面。
我不知道为什么!这是我的表格:
<?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>
这是表单动作->
http://localhost/LoginTut/index.php/VerifyLogin/index
用户应该被带到一个新页面。不知道为什么会出现这个问题!!有任何想法吗?