Hi everyone, I'm a beginner in not just Codeigniter but in frameworks in general. And this routing thing is really confusing me. *This might be a silly question but here it is.*
This is the thing:
The problem is that when I go to localhost/codeigniter/login, it brings back to the dashboard. I'm very sure I'm not making redirects to dashboard from the login page.
This is the thing:
Code:
$route['default_contoller'] = 'dashboard'; //main page here, it works $route['login'] = 'login';
Comment