I have a users module and few actions like wall, dishes, restaurants, photos.
i wanna set up a routing like something like this
site.com/users/{userId or Username}/wall => should route to wall() action
site.com/users/{userId or Username}/dishes => should route to dishes() action
site.com/users/{userId or Username}/restaurants => should route to restaurants() action
site.com/users/{userId or Username}/photos => should route to photos() action
am not sure how to keep the url intact in the address bar but load the actions.. where user id or username is passed onto the action.