I try to create URL with another divider, not '/', like '-'

from http://host.com/category/food => http://host.com/category-food

Can anyone help me?

Thanks

link|improve this question
feedback

2 Answers

Something like this should work in Rails 3.0 and higher:

 get 'category-:id' => 'categories#show', :as => 'show_category'

Then you could link to it using <%= link_to 'Category', show_category_path(category) %>

link|improve this answer
Thanks Beerlington! It's work! – rlishtaba Jan 19 at 8:57
feedback

Match '/category-food' to: 'category#food'.

link|improve this answer
Thank you JudeArasu! It's work! – rlishtaba Jan 19 at 8:57
1  
You are welcomed.Happy to help you.Consider accepting answer. – JudeArasu Jan 19 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.