I am using rails 2.3.5 .
I need to have a url format like
/:first_name{space}:last_name # e.g.: /Michael Jackson
/:first_name{_}:last_name # e.g.: /Michael_Jackson
Currently iam having this as the format which works
map.shorturl "/:first_name.:last_name", :controller => 'users', :action => 'show' ex: Michael.Jackson
The dot in between is working.. but the other two formats are not working.
Is it possible to have those formats? if yes, how?