Welcome Guest, Not a member yet? Register   Sign In
URI Routing not working
#1

[eluser]Bigil Michael[/eluser]
my routes.php page is like this

Code:
$route['default_controller'] = "home";
$route['scaffolding_trigger'] = "";
$route['index/(:num)'] = "aboutus/index/$1";

i want to do a redirection from http://localhost/gulfq/qbiz/home/index/14 to http://localhost/gulfq/qbiz/aboutus/index/14.

but my URI routing is not working. can any one help me to solve this issue ???

thanks in advance....
#2

[eluser]sanir[/eluser]
hi

Try this code.

Code:
$route['default_controller'] = "home";
$route['scaffolding_trigger'] = "";
$route['home/index/(:num)'] = "aboutus/index/$1";

Thanks,
Nasir Ranta
#3

[eluser]InsiteFX[/eluser]
IF you are using CI 2+ then there is no more scaffolding.
#4

[eluser]Bigil Michael[/eluser]
i think codeigniter 1.7.1




Theme © iAndrew 2016 - Forum software by © MyBB