Giving a nested route an alias in Rails - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T17:49:51Zhttp://stackoverflow.com/feeds/question/754026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/754026/giving-a-nested-route-an-alias-in-rails1Giving a nested route an alias in RailsKirschstein2009-04-15T22:39:10Z2009-04-16T07:43:55Z
<p>If I want to provide an alias for a controller, I can use <code>map.resources :rants, :controller => 'blog_posts'</code> yoursite.com/rants points to the <code>blog_posts</code> controller fine.</p>
<p>How do I give an alias to a nested resource, for example yoursite.com/users/5/rants ?</p>
http://stackoverflow.com/questions/754026/giving-a-nested-route-an-alias-in-rails/755120#7551201Answer by vrish88 for Giving a nested route an alias in Railsvrish882009-04-16T07:43:55Z2009-04-16T07:43:55Z<p>You may want to try:</p>
<pre><code> map.resources :rants, :controller => 'blog_posts'
map.resources :users do |users|
users.resources :rants, :controller => 'blog_posts'
end
</code></pre>
<p>This will give you the <code>yoursite.com/users/5/rants/</code> url that you are looking for and it will generate the handy methods (for example: <code>users_rants_path(@user)</code>)</p>
<p>Hope this helps.</p>