在codeigniter中获取404页面未找到错误

时间:2019-06-20 04:13:32

标签: php codeigniter

我正在尝试通过控制器加载视图。但是它抛出一个错误“ 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');
                }
            }

0 个答案:

没有答案