CodeIgniter: 404 Page Not Found on Live Server

前端 未结 11 1506
感动是毒
感动是毒 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 05:12

    I was stuck with this approx a day i just rename filename "Filename" with capital letter and rename the controller class "Classname". and it solved the problem.

    **class Myclass extends CI_Controller{}
    save file: Myclass.php**
    

    application/config/config.php

    $config['base_url'] = '';
    

提交回复
热议问题