CodeIgniter Forums
how to chose from two different apps? - 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: how to chose from two different apps? (/showthread.php?tid=79265)



how to chose from two different apps? - richb201 - 05-19-2021

In my routes.php I have the following

$route['default_controller'] = 'Users2/login';
//$route['default_controller'] ='Display_survey/display';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['registration'] = 'registration';
$route['login'] = 'login';
$route['subit_backend']['GET']='subit_backend/register';


When I type localhost User2/login runs. I'd like to be able to start up a different application from my authentication package fusionAuth. How do I do this? If I type Users2/login in my browser, Google opens. Is there some full path that needs to be specified?