我正在使用Heroku SSL,我需要我的 Rails 控制器之一不使用 SSL。
我在控制器中尝试了 before_filter:
if request.ssl? && Rails.env.production?
redirect_to :protocol => 'http://', :status => :moved_permanently
end
不幸的是,这以too many redirects
错误告终。如何为此控制器创建异常?非常感谢。
我正在使用Heroku SSL,我需要我的 Rails 控制器之一不使用 SSL。
我在控制器中尝试了 before_filter:
if request.ssl? && Rails.env.production?
redirect_to :protocol => 'http://', :status => :moved_permanently
end
不幸的是,这以too many redirects
错误告终。如何为此控制器创建异常?非常感谢。