I am just wondering how to create a home page (otherwise an index page)
at the root of the site? Instead of having to create a controller and
method.
Chad Saunders wrote:
I am just wondering how to create a home page (otherwise an index page)
at the root of the site? Instead of having to create a controller and
method.
You can place an index.html page in the /public directory of your rails
app and that should accomplish what you want.
Phil P. wrote:
Chad Saunders wrote:
I am just wondering how to create a home page (otherwise an index page)
at the root of the site? Instead of having to create a controller and
method.You can place an index.html page in the /public directory of your rails
app and that should accomplish what you want.
Oh okay. Thank you very much!
Put index.html in the public directory.