0
My website is published on IIS
servidor\c\inetpub\wwwroot\site
There are other sites in the wwwroot folder each in your directory (site2, site3, site4... etc)
In Routes.php the default controller is pointing to the home.
$route['default_controller'] = 'home';
The question is: When calling the site it normally opens the home (server/site/home), however, when I try to access any other controller (via link or directly in the url) it returns error 404. ex: server/site/administration (in localhost this error does not occur).
The impression I get is that the CI is understanding that the controller administration (for example) is not inside the controller directory of the CI structure, or that there is more directory until the controller ex: controller/site/administration.php
How can I fix this?
controller/site/Administracao.php - The CI 3 version has this detail
– Sr. André Baill