rails中的URL重定向

时间:2016-06-10 05:05:54

标签: ruby-on-rails-3 amazon-web-services

我已经通过应用程序example.com配置了SSL,我也使用ELB作为应用程序的代理服务器。现在,如果有人访问www.example.com,我希望将其(www.example.com)重定向到example.com,SSL也应该可以使用。

为此,我在路线文件中完成了以下操作:

constraints(:host => /www.example.org/) do
  match "/(*path)" => redirect {|params, req| "https://example.org/#{params[:path]}"}
end

使用上面的代码,重定向正确发生,但问题是我第一次访问www.example.org时出现。我收到了www.example.org的SSL问题。如果我点击高级,那么它的工作。但我不希望这个屏幕出现。

enter image description here

0 个答案:

没有答案