In my rails project i wanna use urls like this
mysite.com/controller/title/action
instead
mysite.com/controller/id/action
How can i now build a redirect to it, with the following line
redirect_to :action => "show"
it redirects to the id version, how do i have to customize the line to redirect to the url with the title?