vote up 0 vote down star

How can i customize restful route urls to friendly urls like stackoverflow ?

i have stackoverflow.com/questions/424/

and i want to have stackoverflow.com/questions/424/title-of-the-page

flag
What is the "something-something" you're trying to do here? Provide some more details of your problem. – Jonathan Julian Nov 5 at 16:43
i changed something-something to title-of-the-page. – Sanchez Nov 5 at 16:52

4 Answers

vote up 0 vote down check

If there's only one controller you want to do this with, the simplest solution would probably be to add a route with an ignored parameter, like so:

# config/routes.rb
map.connect 'questions/:id/:ignored', :controller => 'questions', :action => 'show'

Make sure you put this before the default routes at the bottom of that file. Or, even better, comment them out if you're using named routes and resources (as suggested in the auto-generated comments).

link|flag
vote up 1 vote down

map.resources :questions
map.friendly 'questions/:id/:title', :controller => 'questions', :action => 'show'

<%= link_to 'Show', friendly_path(question.id, question.title.parameterize) %>

These are my final customizations. Any better ideas ?

link|flag
vote up 0 vote down

StackOverflow ignores the string second parameter at request processing time. At URL construction time it adds it for humans and (probably) SEO.

link|flag
vote up 0 vote down

I'd start by looking at the capabilities of something like friendly_id and see if those aren't what you're looking for...

link|flag

Your Answer

Get an OpenID
or

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