准备:先修改config中的base_url 为 网址/文件名
'http://localhost/CI7/'
在类中声明$this->load->helper('url');
全部用base_url() 跟site_url();
登录代码跳转,类中方法,用site_url代表根在该类
if($username=="")
{
echo '<script>alert("用户名不能为空");setTimeout(function () {
window.location="'.site_url('login/index').'";
}, 2000);</script>';
echo "准备跳转";
exit();
}
if($password=="")
{
echo '<script>alert("密码不能为空");setTimeout(function () {
window.location="'.site_url('login/index').'";
}, 2000);</script>';
echo "准备跳转";
exit();
}
在view界面的跨地点跳转用base_url
<html>
<head>
<title>登录</title>
</head>
<body>
<h1>用户登录界面</h1>
<form action="<?php echo base_url('admin.php/login/check_login');?>" method="POST">
用户名:<input type="text" name="username" /><br />
密 码:<input type="text" name="password" /><br />
<input type="submit" value="提交" /><br />
</form>
<a href="<?php echo base_url('admin.php/resiger');?>">立即注册</a>
</body>
</html>