I am confused when I try to route from localhost/admin
to localhost/index.php/admin
localhost/index.php/admin
- this link working fine.
I have tried:
$route['admin'] = 'index.php/admin';
$route['default_controller'] = 'front';
localhost/index.php/front
is working fine when I open localhost
it displays front page which is not working.
I am using CodeIgniter HMVC in this example.
I added extra code as it was not allowing me to post the question.