CodeIgniter Forums
routes help - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: routes help (/showthread.php?tid=26630)



routes help - El Forum - 01-19-2010

[eluser]sasori[/eluser]
let's say I have 2 controllers
1) welcome controller
2) stocks controller

and then on the welcome_view page, I want a link that will redirect the user to the stocks_view page

is this correct ?, not sure if its with the $route config file or the code itself
Code:
echo anchor('stocks/stocks_view','proceed to stocks page');

should i add on the $route something like this ?
Code:
$route['default_controller'] = "welcome"; //this one is the main right ?
$route['default_controller'] = "stocks"; //<-- is this correct ?



routes help - El Forum - 01-19-2010

[eluser]flaky[/eluser]
you don't have to do nothing in the routes
just change the link to this
Code:
echo anchor('stocks','proceed to stocks page');



routes help - El Forum - 01-19-2010

[eluser]hendrawan[/eluser]
Code:
//remove this line
$route['default_controller'] = "stocks";