我有几个静态页面,当在本地运行时,本地作为localhost:3000 / foo.html,但一旦上传到heroku,这不工作.
match '/foo',:to => redirect('/public/foo.html')
解决方法
每
this article,您将需要告诉Rails为静态资产本身提供:
config.serve_static_assets = true
在你的config / environments / production.rb中