I\'m trying to use routing in CI to create a signup form
signup is re-routed to user/signup
signup
user/signup
But my signup function can contain a pa
The clearest way to express this would probably be to declare both routes:
$route['signup'] = "user/signup"; $route['signup/(:num)'] = "user/signup/$1";