如何使用 Rails 路由从一个域重定向到另一个域?

问题描述 投票:0回答:6

我的应用程序过去在 foo.tld 上运行,但现在在 bar.tld 上运行。请求仍然会传入 foo.tld,我想将它们重定向到 bar.tld。

如何在铁路线路中做到这一点?

ruby-on-rails routes rails-routing
6个回答
44
投票

这适用于 Rails 3.2.3

constraints(:host => /foo.tld/) do
  match "/(*path)" => redirect {|params, req| "http://bar.tld/#{params[:path]}"}
end

这适用于 Rails 4.0

constraints(:host => /foo.tld/) do
  match "/(*path)" => redirect {|params, req| "http://bar.tld/#{params[:path]}"},  via: [:get, :post]
end

6
投票

与其他答案类似,这个对我有用:

# config/routes.rb
constraints(host: "foo.com", format: "html") do
  get ":any", to: redirect(host: "bar.com", path: "/%{any}"), any: /.*/
end

6
投票

这完成了另一个答案的工作。除此之外,它还保留查询字符串。 (轨道 4):

# http://foo.tld?x=y redirects to http://bar.tld?x=y
constraints(:host => /foo.tld/) do
  match '/(*path)' => redirect { |params, req|
    query_params = req.params.except(:path)
    "http://bar.tld/#{params[:path]}#{query_params.keys.any? ? "?" + query_params.to_query : ""}"
  }, via: [:get, :post]
end

注意:如果您要处理完整域而不仅仅是子域,请使用

:domain
而不是
:host


3
投票

以下解决方案在

GET
HEAD
请求上重定向多个域,同时对所有其他请求返回 http 400(根据类似问题中的 this comment)。

/lib/constraints/domain_redirect_constraint.rb:

module Constraints
  class DomainRedirectConstraint
    def matches?(request)
      request_host = request.host.downcase
      return request_host == "foo.tld1" || \
             request_host == "foo.tld2" || \
             request_host == "foo.tld3"
    end
  end
end

/config/routes.rb:

require 'constraints/domain_redirect_constraint'

Rails.application.routes.draw do
  match "/(*path)", to: redirect {|p, req| "//bar.tld#{req.fullpath}"}, via: [:get, :head], constraints: Constraints::DomainRedirectConstraint.new
  match "/(*path)", to: proc { [400, {}, ['']] }, via: :all, constraints: Constraints::DomainRedirectConstraint.new

  ...
end

出于某种原因,

constraints Constraints::DomainRedirectConstraint.new do
在heroku上对我不起作用,但
constraints: Constraints::DomainRedirectConstraint.new
工作得很好。


2
投票

更现代的方法:

constraints(host: 'www.mydomain.com') do
  get '/:param' => redirect('https://www.mynewurl.com/%{param}')
end

1
投票
constraints(host: /subdomain\.domain\.com/) do
  match '/(*path)' => redirect { |params, req|
    "https://www.example.com#{req.fullpath}"
  }, via: [:get, :head]
end

我在 Heroku 上使用自定义域时使用此选项,并且我想从 myapp.herokuapp.com -> www.example.com 重定向。

© www.soinside.com 2019 - 2024. All rights reserved.