![]() |
Gettng 404 errors - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: Gettng 404 errors (/showthread.php?tid=79792) |
Gettng 404 errors - err0r500 - 07-27-2021 This is my first time working with CI, I'm trying to upgrade from CI 2 to 3.1.11. I followed the instruction in the user guide and was able to get the main page to load the login screen. Anytime I try to login or click any other link (which checks to see if im logged in and redirects) I get a 404. domain.com/application/base.php/controller/function The page you requested was not found. RE: Gettng 404 errors - kleber - 08-19-2021 Hi. You must check your redirection address. Typically there is a one-to-one relationship between a URL string and its corresponding controller class/method. The segments in a URI normally follow this pattern: PHP Code: example.com/class/function/id/ Check: https://codeigniter.com/userguide3/general/routing.html |