Routing Error during “Ruby on Rails-Tutorial”

后端 未结 9 1983
忘了有多久
忘了有多久 2021-01-24 03:25

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

9条回答
  •  不思量自难忘°
    2021-01-24 04:13

    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 .

提交回复
热议问题