php-Codeigniter重定向URL问题

我是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');
}

我的文件在图片中
php-Codeigniter重定向URL问题

解决方法:

请检查您提供给home.php控制器的类的名称

上一篇:php – WordPress网站坏了添加https到网址


下一篇:CakePHP 3:生成缩短的URL(规范)