ruby on rails - Remove the parent folder from the domain in the routes.rb? -


i have following resources`:

resources :badges     collections         match 'create', via [:get, :post]     end end 

when access these pages [mydomain]/badges/new.

how remove badges fromt domain , maintain clean resources routing method? (without having manually change of these resources' paths

you can this:

resources :badges, path: '/'   #... end 

Comments