It seems like some people here had this problem but I couldn\'t find any solution in another topic.
I am doing Chapter 3 of the Ruby on Rails-Tutorial, working on the sta
Try this :
match "/static_pages/home" => "static_pages#home", :via => :get match "/static_pages/help" => "static_pages#help", :via => :get match "/static_pages/about" => "static_pages#about", :via => :get
Add into routes , restart the server and refresh browser .