我有這段代碼,當我用mydomain/index.php/blog調用函數時,一切都正常,但是這種情況下的內容即「index」正在顯示在頁面的頂部。 我希望它顯示在我的CSS中定義的內容區域中。有什麼問題?如何在codeigniter的正確位置放置內容?
<?php
class Blog extends CI_Controller{
public function __construct(){
parent::__construct();
}
public function index(){
$this->load->view('template/header');
echo "index";
$this->load->view('template/footer');
}
}
?>
參閱有關重寫的URL的[笨文檔】(http://ellislab.com/codeigniter/user-guide/general/urls.html)。 – wallyk