0

我认为这是一个简单的问题,但我没有找到解决方案。在 Rails 中,如何在路由中获取我的应用程序 URL?

就像是:

get '/foo', to: redirect("http://whatheverurl.com/?bar=#{MY_APPLICATION_URL}")
4

2 回答 2

1
  match '/foo', :to => redirect { |params, request|
    "http://whatheverurl.com/?bar=#{request.env['HTTP_HOST']}"
  }
于 2012-12-10T21:26:42.240 回答
1

你可以这样做:

  match "/web_site", :to => proc { |env|
    [301, { 
      'Location' => "http://www.greenviewdata.com?from=#{env['HTTP_HOST']}" 
    }, ["Go here instead: http://www.greenviewdata.com?from=#{env['HTTP_HOST']}"]]
  }
于 2012-12-10T21:44:19.317 回答