The page that loads when no controller name is given in the URL is the
public/index.html page (eg: http://localhost:3000/)
Now this is a pure HTML page so I cannot use any link_to tags or yield
tags, etc.
My navigation bar is in my application layout
(app/views/layouts/application.html.erb). This is what provides the
ability to navigate.
So how do I access this layout if the home page that loads is index.html
which has no reference to any of my rails views?
Basically I want to know how to create a “home” page with rails (without
always having to type controller/action in the URL.
Thanks in advance.