任意のパスを別のパスにリダイレクト
適応バージョン
- 3.1.0
- 3.2.3
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
任意のパスを別のパスにリダイレクト
使い方
redirect(パス.., ブロック引数)
例
リダイレクト
get "/stories" => redirect("/posts")
引数で補完
get 'docs/:article', to: redirect('/wiki/%{article}')
ブロック
get 'jokes/:number', to: redirect { |params, request|
path = (params[:number].to_i.even? ? "wheres-the-beef" : "i-love-lamp")
"http://#{request.host_with_port}/#{path}"
}
変更が必要なURL
get 'stores/:name', to: redirect(subdomain: 'stores', path: '/%{name}')