Ruby on Rails 2.3.8:有没有办法始终转发到 URL 的 https 版本?
因此,在我的一些数据库记录中,有一个对象“内容”,它有一个主体,就像文档一样。有时,正文的 URL 指向我的应用程序服务器上的图像。其中许多 URL 都是 HTTP。
有没有办法将所有 HTTP 请求重定向到 HTTPS?
我正在使用 Rails 2.3.8
和回形针宝石
So, in some of my database records, there is an object, "content" that has a body, much like a document would. Sometimes the body has URL that point to images on my app server. Many of these URLs are HTTP.
Is there anyway to redirect all HTTP requests to HTTPS?
I'm using Rails 2.3.8
and the Paperclip gem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于某些浏览器安全设置会在查看 HTTPS 页面时阻止 HTTP 资源,因此您不希望在 Web 服务器(例如 mod_rewrite)级别执行此操作,因为某些浏览器无法做到这一点。
您不想在视图或控制器级别处理此问题 - 模型是您强制执行业务规则(例如保持全部 HTTPS)的地方。
1) 防止保存 HTTP 链接
2) 清理现有内容
启动控制台并运行以下命令:
Because some browser security settings will block HTTP assets when viewing a HTTPS page, you don't want to do this at the web server (e.g. mod_rewrite) level since some browsers won't make it that far.
You don't want to handle this at the view or controller level - the model is where you enforce business rules like keep it all HTTPS.
1) Prevent HTTP links from being saved
2) Clean up existing content
Fire up console and run this: