CodeIgniter 404 Page Not Found, but why?

前端 未结 11 2382
Happy的楠姐
Happy的楠姐 2020-12-11 14:48

I am using CodeIgniter for two applications (a public and an admin app). The important elements of the document structure are:

/admin
/admin/.htaccess
/admin         


        
11条回答
  •  悲&欢浪女
    2020-12-11 15:16

    we have to give the controller name in lower cases in server side

    $this->class = strtolower(__CLASS__);
    

提交回复
热议问题