Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
662 views
in Technique[技术] by (71.8m points)

running rails app on heroku, can't see static pages in /public folder

I have a couple static pages which when running locally work as localhost:3000/foo.html, but this doesn't work once uploaded to heroku.

I tried adding the following to the routes.rb file:

match '/foo', :to => redirect('/public/foo.html')

but that doesn't seem to work, it redirects me to foobar.com/public/foo.html, but still finds nothing there.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Per this article, you will need to tell Rails to serve static assets itself with:

config.serve_static_assets = true

in your config/environments/production.rb


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...