Middlemanのlink_toを相対パスにする。そしてindex.htmlを省略させない
ローカルで見られるサイトをMiddlemanで生成したかったんですが、ちょっとはまったのでメモ
ルート相対パスになっちゃう
config.rb
set :relative_links, true
と書けばmiddleman build
したときにドキュメント相対パスになるはずなんですが、ならない・・・
原因
foo.html.erb
<!-- これではだめ -->
<%= link_to "Foo", "/bar/" %>
<!-- ファイル名まで必要 -->
<%= link_to "Foo", "/bar/index.html" %>
index.htmlが省略されちゃう
ローカルだとディレクトリインデックスが効かないので、これでは困ります。。。
対策
config.rb
set :strip_index_file, false
これを書けばOKでした。
Author And Source
この問題について(Middlemanのlink_toを相対パスにする。そしてindex.htmlを省略させない), 我々は、より多くの情報をここで見つけました https://qiita.com/ocadaruma/items/d5da9b1ea7bf4c4d2e33著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .