我有这段代码,当我使用 mydomain/index.php/blog 调用该函数时,一切正常,但在这种情况下,内容(即“索引”)显示在页面顶部。我希望它显示在我在我的 CSS 中定义的内容区域中。有什么问题?
<?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');
}
}
?>