Is it possible to set scope for match routings.
I have tried this:
scope "/admin" do
match ':controller/:action/:id'
emd
But it doesn't work.
Is it possible to set scope for match routings.
I have tried this:
scope "/admin" do
match ':controller/:action/:id'
emd
But it doesn't work.
Should be something like:
scope "/admin" do
match ':controller/:action/:id', :to => 'home#index', :via => 'get'
end
You have to match something TO something else… The :via method definition isn't mandatory.
EDIT
You may also try
scope "/admin" do
match '/:controller(/:action(/:id))'
end