Codeigniter页面显示404页面未找到

时间:2012-12-28 11:31:15

标签: linux codeigniter

我也是codeIgniter和Linux的新手。当我尝试运行http://localhost/CodeIgniter/hello/first_page时,它会显示404 Error: Page not found。我的控制器类:

/*hello.php*/
class Hello extends CI_Controller
{
    function __construct() {
        parent::__construct();
    }
    function first_page()
    {
        $this->load->view('first_view');
    }
}

我的first_view.php是:

<html>
    <head>
        <title>First CI Page</title>
    </head>
    <body>
        Hi Folks !
    </body>

<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */   

?>
</html>

注意:http://localhost/CodeIgniter显示欢迎信息。所有文件都是可执行的(777)

1 个答案:

答案 0 :(得分:3)

试试这个网址..你会得到它

http://localhost/CodeIgniter/index.php/hello/first_page

您必须加入index.php