Routes in Codeigniter - 404 Page Not Found

后端 未结 2 1898
故里飘歌
故里飘歌 2021-01-13 07:45

Can someone tell me, where the issue is ??

This is my controller

class Support extends CI_Controller {
    public function __construct()
    {
               


        
2条回答
  •  滥情空心
    2021-01-13 08:24

    Since the above answer did not work for me, I just added this function in my default_controller, and it worked.

        public function __construct() {
        parent::__construct();
        $this->load->helper('url');
        }
    

提交回复
热议问题