1
I’m having problems to set the home page as root in my application.
in the archive config/routes.rb
I’ve made several attempts as:
root :to => 'static_pages#home'
and
root 'static_pages#home'
But none works, I’m working with her that way:
get 'home' => 'static_pages#home'
Which syntax is correct to put as root?
You managed to solve the problem?
– Daniel Dutra