My index.html page for my project needs some Ruby code so I need to change it to a .erb extension. How do I configure Rails to identify the index.html.erb file as the starting page of the project instead of the index.html file?
|
|
|
||
|
|
|
|
You need to configure the
http://api.rubyonrails.org/classes/ActionController/Routing.html |
||||||
|
|
|
public/index.html is a flat file, and doesn't go through any templating (everything in /public/ is like this.) If you want templating on your index page, you need to run the request through a controller and a view. You can map the root URL of your application to a controller with map.root:
|
||
|
|
