0

我也是 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)

4

1 回答 1

3

试试这个网址..你会明白的

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

你必须包括index.php

于 2012-12-28T11:39:55.723 回答