我有一个在Heroku上运行的Rails 3应用程序,我也安装了SSL并正在运行.但是,我的
用户仍然可以在没有https的情况下访问该
站点.如何确保使用https访问所有网址?
谢谢
编辑:
我已经尝试将其添加到application_controller.rb中
before_filter :redirect_to_ssl
def redirect_to_ssl
redirect_to url_for params.merge({:protocol => 'https://'})
end
但是我收到错误310(net :: ERR_TOO_MANY_REDIRECTS)错误.
原文链接:https://www.f2er.com/ruby/269134.html