I get the match syntax for rails 3 in the routes.rb file:
match ‘somewhere’ => ‘articles#index’
This would let me use somewhere_path, which is cool.
…
But how do I define a path called ‘xyz’ to something like admin/
articles/index? Something like…
match ‘xyz’ => ‘admin/articles#index’
But that doesn’t work! Thoughts?