I am using Codeigniter 2.0.1. When I call for example..
http://localhost/index.php/admin/login ./controllers/admin/login.php
It works fine but when I call the url below with a folder within the admin directory it throws the 404 error.
http://localhost/index.php/admin/new_dir/dashboard ./controllers/admin/new_dir/dashboard.php
My controllers are placed and named correctly. Does anyone know why this is happening or can controllers only be one directory deep from the controller directory?
Thanks