CodeIgniter Forums
Starting which Controller? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Starting which Controller? (/showthread.php?tid=80361)



Starting which Controller? - richb201 - 10-22-2021

When I type http://URL:8181 my application starts running URL/Users_start_login when I actually want it to run URL/Configure, I am running this up on AWS. Is there anyplace in my CI3 program where I specify which program to run? I have already set $route[default_controller]=Configure in routes.php

The problem is that I am not sure where this is running? It might be on the server or it could be on my laptop. phpStorm remote debugging works through a tunnel between the client and the server.


RE: Starting which Controller? - richb201 - 10-25-2021

Let me re-ask this. Is there some tool I can use to see why this is going to http://staging.xxx.com:8181/Users_start_login rather than http://staging.xxx.com:8181/Configure?