このガイドを使用して静的 Web サイトを Heroku にデプロイしました: https://devcenter.heroku.com/articles/static-sites-ruby
このフォルダー構造を作成しました:
- site
|- config.ru
|- Gemfile
|- public
|- index.html
|- images
|- js
|- css
|- subfolder
|- images
|- js
|- css
そしてこれをに書いたconfig.ru
:
use Rack::Static,
:urls => ["/images", "/js", "/css"],
:root => "public"
use Rack::Static,
:urls => ["/images", "/js", "/css"],
:root => "public/subfolder"
run lambda { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400'
},
File.open('public/index.html', File::RDONLY)
]
}
map '/subfolder' do
run Proc.new { |env|
[
200,
{
'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=6400'
},
File.open('public/subfolder/index.html', File::RDONLY)
]
}
end
domain.com
今、私は と を指し示したいと思ってpublic/index.html
いdomain.com/subfolder
ますpublic/subfolder/index.html
。ランディング ページは適切に機能しているように見えますが、正しいディレクトリ (つまり、正しいimages
,js
およびcss
フォルダー) に要求を処理できないようです。
これを解決する方法はありますか?ありがとう!