When invoking controller in codeigniter, it always seems to be passing through "Welcome"

0

I'm doing a simple PHP application with codeigniter, where I'm trying to access a controller, and apparently whenever I call that controller, it goes through the welcome example:

localhost/estudando/Login/login

generates the same result as:

localhost/estudando/Welcome/Login/login.

And of the error, it returns the same page of the Welcome only that without css.

    
asked by anonymous 18.10.2017 / 19:53

1 answer

0

It may be the Controller Default setting.

See if the application / config / routes.php file contains something like this:

$route['default_controller'] = 'Welcome';
    
28.11.2017 / 15:15