In my first approach with Rails I have simply create a void SayController and static hello.rhtml view but when the page http://localhost:3000/say/hello started return me a Routing Error like this:
No route matches [GET] "/say/hello"
Try running rake routes for more information on available routes.
Rails version: 3.2.6
You should have something in your
config/routes.rbto define that route. Try:The go to
localhost:3000/say/helloAlso check out this documentation:
http://guides.rubyonrails.org/routing.html