Giving a nested route an alias in Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:49:51Z http://stackoverflow.com/feeds/question/754026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/754026/giving-a-nested-route-an-alias-in-rails 1 Giving a nested route an alias in Rails Kirschstein 2009-04-15T22:39:10Z 2009-04-16T07:43:55Z <p>If I want to provide an alias for a controller, I can use <code>map.resources :rants, :controller =&gt; '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#755120 1 Answer by vrish88 for Giving a nested route an alias in Rails vrish88 2009-04-16T07:43:55Z 2009-04-16T07:43:55Z <p>You may want to try:</p> <pre><code> map.resources :rants, :controller =&gt; 'blog_posts' map.resources :users do |users| users.resources :rants, :controller =&gt; '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>