0
routes.rb
にルートを指定しても、私のRails
アプリケーションでは、ブラウザでhttp://localhost:3000/pages
をクリックすると次のエラーが表示されます。Railsアプリケーションがルートを検出できません
ルビーバージョン: 2.2
Railsのバージョン: 5.0
エラー:
No route matches [GET] "/pages"
routes.rbを
Rails.application.routes.draw do
root 'pages#home'
end
pages_controller.rb
class PagesController < ApplicationController
def home
end
end
home.html.erb
<h2>Welcome Home</h2>
<p>After your long journey through rocky mountains and dry dust bowls you have finally neared the end.</p>