我正在尝试通过控制器加载视图。但是它抛出一个错误“ 404页面未找到”。请提出解决方法。 控制器:
<?php
class Dashboard extends MY_Controller
{
public function index()
{
$this->load->helper('form');
$this->load->view('public/welcome_message');
}
public function dashboard2()
{
$this->load->helper('form');
$this->load->view('public/welcome2_message');
}
public function attendance()
{
$this->load->helper('form');
$this->load->view('admin/attendance');
}
}