I have a Rails 3 question. I want to get my users controller show page to have the app.com/people/username url.
Route
resources :users match \"/peo
I don't think starting with . is supported by default in rails routes. You can do something like
.
match "/people/:username" => 'users#show', :as => :profile, :username => /[\.a-zA-Z0-9_]+/
The above regex will match ., a-z, A-Z, 0-9 and _ as valid characters for the username.
., a-z, A-Z, 0-9 and _