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