Skip to content

Instantly share code, notes, and snippets.

View cimadai's full-sized avatar

Daisuke Shimada cimadai

  • Communitio Corporation.
View GitHub Profile
# sinatra でのリダイレクト設定
# http://.../hoge のような '/' なしを '/' ありへリダイレクト
# ただし、 http://example.com の場合は末尾 '/' が付く
get %r{^(.+[^/])$} do |c|
redirect c + "/", 303
end