我在我的控制器有這樣的:笨視圖不會加載
class UpdateStats extends CI_Controller{
public function __construct() {
parent::__construct();
}
function index(){
$this->load->view('update_stats/index');
}
}
我的看法(索引)是update_stats查看文件夾中的文件夾
當我點擊我創建的鏈接:
<li id='proxy'><a href="<?php echo base_url();?>index.php/update_stats/">Master Update</a></li>
或以另一種形式是:
<li id='proxy'><a href="http://localhost/scanner/index.php/update_stats/">Master Update</a></li>
這是我的錯誤:
404找不到網頁
您請求的頁面不存在。
UPDATE 我的文件名是:updatestats ..我的類名UpdateStats我試圖進入到http://localhost/scanner/index.php/updatestats
..和我得到的404錯誤
文件名:updatestats.php
類名稱:Updatestats.php
URL DESTINATION:http://localhost/scanner/index.php/updatestats/
CLASS:
class Updatestats extends CI_Controller{
public function __construct() {
parent::__construct();
}
function index(){
$this->load->view('templates/header', $data);
$this->load->view('update_stats/index');
$this->load->view('templates/footer', $data);
}
}
enter code here
什麼是您的base_url?你有一套默認控制器嗎? –
你不能看我的問題...?我應該複製並粘貼它給你..:「http:// localhost/scanner /」 –