我是Codeigniter的新手.我刚刚在google的帮助下在CI中做了一个登录功能,但是在这里我要重定向到登录时的URL,但是它不起作用.
这是细节
重定向后的链接是这样的http://localhost/xpensepedia/index.php/home
这给出了404错误
404 Page Not Found
The page you requested was not found.
而我的控制器是
public function index() {
$this->load->view('header');
if (($this->session->userdata('user_id') != "")) {
redirect(site_url('home'));
} else {
$this->load->view("register");
}
$this->load->view('footer');
}
解决方法:
请检查您提供给home.php控制器的类的名称