Say I wanted the following URL scheme, which I got to work by setting the following URI route.
http://www.domain.com/profile/jimbob123
$route['profile'] = "profile/index";
$route['profile/(:any)'] = "profile/index/$1";
Now, let's say I want my URL to look like the following when I want to display a "status."
http://www.domain.com/profile/jimbob123/status/908734efc
How do I go about passing "jimbob123" and "908734efc" into my method so I can check and retrieve this particular record? I tried the following but it doesn't seem to work.
$route['user/(:any)/status/(:any)'] = "user/plan/$1/$2";