スタティックラックアプリとしてHerokuに静的ページをデプロイしました。私のconfig.ru:Rackアプリ、すべてをルートにリダイレクト
use Rack::Static,
:urls => ["/stylesheets", "/images"],
:root => "public",
:index => "public/index.html"
run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
ここで、この静的index.htmlファイルにすべてのリクエストをリダイレクトしたいと思います。どのようにこれを達成するための任意のアイデアですか?
http://stackoverflow.com/questions/2265036/how-to-serve-static-files-via-rackを参照してください。 – iain