|
我写了这些代码<?php
class Home extends Controller {
function __construct() {
parent::Controller();
$this->load->helper('url');
}
}
function index(){
$data['page_title']='ci开发系统';
$this->load->view('header',$data);
$this->load->view('index');
$this->load->view('footer');
}
?>也在view文件夹里创建了header.php index.php footer.php,浏览的时候显示404
404 Page Not Found The page you requested was not found.
请问这是怎么回事啊?
|
|