Hello,
I did a whole ruby on rails install.
After that I wanted to use the hierapolis gem and did all the steps in
the
README.
But when I do rails s , I still see the standard welcome page.
What must I do to make this work.
Roelof
Hello,
I did a whole ruby on rails install.
After that I wanted to use the hierapolis gem and did all the steps in
the
README.
But when I do rails s , I still see the standard welcome page.
What must I do to make this work.
Roelof
In the original install, did you use Rails 4.1, or was it a lower
version? If lower, did you delete the index.html file from your /public
folder?
Walter
Hoi,
I use the 4.1 ruby.
Roelof
Op zaterdag 12 juli 2014 14:24:49 UTC+2 schreef Walter Lee D.:
Then did you update your routes.rb file to reflect where :root should
be?
Walter
Nope,
I only figured out that a application.html.erb is living on
/apps/views/layouts
but can I send root to a static page ?
Roelof
Op zaterdag 12 juli 2014 16:53:51 UTC+2 schreef Walter Lee D.:
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:
class StaticPagesController < ApplicationController
# empty
end
…
…
root to: ‘static_pages#your_page’
Rails’ defaults take care of all the rest of the wiring.
Walter
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs