![]() |
Error 404 on hosting - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Error 404 on hosting (/showthread.php?tid=64127) |
Error 404 on hosting - jdk2se - 01-17-2016 Hello! I have uploaded my first site on CI to hosting. I changed base_url and batadase settings. However, when I go to http://mydomain.com I have an 404 error. It comes from CI because I can change (view->errors->html->error_404.php) and I see those changes. What should I do to solve this trouble? P.S. Sorry for newbie question, but I cannot solve it for 2 days ![]() RE: Error 404 on hosting - kenjis - 01-17-2016 If you are using CI3, check your class filenames: https://github.com/kenjis/codeigniter3-filename-checker RE: Error 404 on hosting - skunkbad - 01-18-2016 You might try a different URI protocol (config/config.php). Who is your host? Are you trying to use mod_rewrite through .htaccess? If so, remove the rewrite rules temporarily, just to see if the home page loads. RE: Error 404 on hosting - Diederik - 01-18-2016 If you developped on a local Windows machine and your hosting provider uses linux then it could very well be the file names in your classes. The file system Windows uses is not case sensitive where linux is. Your controller file names etc should start with a single capital. |