If you put a static index.html in the public folder, that will become your site root, or you can use a controller and a route to send a different file, like this:
# static_pages_controller.rb
class StaticPagesController < ApplicationController
# empty
end
# /views/static_pages/your_page.html
<!-- your entirely static html home page -->
...
# /config/routes.rb
...
root to: 'static_pages#your_page'
Rails' defaults take care of all the rest of the wiring.
Walter
> To view this discussion on the web visit
https://groups.google.com/d/msgid/rubyonrails-talk/41B7C67C-B381-40EA-BB9D-026F1C4C8BEE%40wdstudio.com.