CodeIgniter: 404 Page Not Found on Live Server

前端 未结 11 1544
感动是毒
感动是毒 2020-12-03 04:46

I have been developing a small web application with CodeIgniter. After testing it out locally I went to put it on my web server to allow a couple other people test out some

11条回答
  •  感动是毒
    2020-12-03 04:58

    You are using MVC with OOPS Concept. So there are some certain rules.

    1) Your class name (ie: controller name) should be start with capital Letter.

    e.g.: your controller name is 'icecream'. that should be 'Icecream'

    In localhost it might not be compulsory, but in server it will check all these rules, else it can't detect the right class name.

提交回复
热议问题