1
votes

I have admin folder in my controllers Folder. Structure as Below.

  • Controllers
    ----admin

    -----------Admin.php

    -----------Dashboard.php

How to set a default controller?

I am getting 404 Page Not Found

http://localhost:8080/project/admin/
$routes['admin'] = 'admin/index';
3

3 Answers

3
votes
$route['folder'] = "folder/home";
$route['admin'] = 'admin/admin';

$route['admin/dashboard'] = 'admin/dashboard';
$route['admin/logout'] = 'admin/profile';
$route['admin/home'] = 'admin/home';
2
votes

Not possible in CodeIgniter 3

Reference >>>

1
votes

I am maintaining my admin related controller's in a directory (Controllers/admin/)

//ADMIN

//$route['folder'] = "folder/home";
$route['admin'] = 'admin/admin';

$route['admin/dashboard'] = 'admin/dashboard';
$route['admin/logout'] = 'admin/profile';
$route['admin/home'] = 'admin/home';