vote up 0 vote down star
1

I'm new to CI and URI routing in general.

I created a new app. Set the default controller to Main. In Main, I have an index method, a popular method and a recent method.

When I load my app, the url shows up as http://localhost/myapp... this obviously loads up the index method in the Main controller... that's fine.

Now how do I route my URIs so I can load up the popular and recent method by going to http://localhost/myapp/popular and http://localhost/myapp/recent respectively?

flag

3 Answers

vote up 1 vote down check

You can use CodeIgniter's routing features. To do that, just add the following lines to your application/config/routes.php file:

$route['recent'] = "main/recent";
$route['popular'] = "main/popular";
link|flag
You cannot have a controller with the name, "index". It is reserved. See codeigniter.com/user_guide/general/… – Thorpe Obazee Nov 3 at 1:35
Oops. Yeah, fixed the typo. Index was supposed to be main. – Franz Nov 3 at 1:42
no problem. It happens :) – Thorpe Obazee Nov 3 at 7:04
vote up 0 vote down

If popular and recent are actual pages in your application, as opposed to functions, you ought to move those to their own controllers, as opposed to keeping them under main.

link|flag
I'm not too familiar with CodeIgniter specifically, but that doesn't sound right at all. I'm 99% sure it's router can do this, and messing with the already configured mod_rewrite is probably not a good idea, nor is it consistent. – Mark Nov 3 at 1:41
Thanks Mark I wasn't aware of the router in CI. – LFSR Consulting Nov 3 at 15:19
vote up 1 vote down
$route['recent'] = "your_controller/recent";
$route['popular'] = "your_controller/popular";

That's what you will need. Any call to "recent" will route to "your_controller/recent". The same goes with popular.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.