ruby on rails 3-使用https而不是带有redirect_to的http



在我的控制器中,我有

redirect_to root_url, notice: 'Product created'

如果我使用http作为协议,这是正确的。但是部署应用程序的服务器使用的是https。如何使重定向到在服务器上使用https,但在我的开发机器上仍然使用http?

谢谢

在config/environments/production.rb中添加以下内容:

YourApp::Application.configure do
  ...
  config.force_ssl = true
end

相关内容

  • 没有找到相关文章

最新更新