CodeIgniter: 404 Page Not Found on Live Server

前端 未结 11 1507
感动是毒
感动是毒 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条回答
  •  -上瘾入骨i
    2020-12-03 05:06

    Changing the first letter to uppercase on the file's name and class name works.

    file: controllers/Login.php

    class: class Login extends CI_Controller { ... }

    The file name, as the class name, should starts with capital letter. This rule applys to models too.

    https://www.codeigniter.com/user_guide/general/models.html

提交回复
热议问题