Search code examples
codeignitercodeigniter-2

Route to a specific controller in codeigniter


I am using codeigniter for the back end of my website. For that I have created admin folder inside my controller. My issue is that when i type the url

http://localhost/varma/admin

It should redirect to the file login.php which is inside the contollers/admin


Solution

  • Inside the routes.php write this code:

    $route['admin'] = 'admin/controller/function';