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
For anyone else reading this in due course - I believe the answer should be $route['signup/?(:num)?'] which makes the number optional as well. I had similar issues on something else.
$route['signup/?(:num)?']