且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

用户友好的错误页面未在生产环境中显示

更新时间:2023-12-04 16:53:04

感谢 EngineYard 的 Scott,我找到了解决方案

I found a fix for this thanks to Scott at EngineYard

我把它放在我的 config/environments/production.rb 的开头

I put this at the beginning of my config/environments/production.rb

class ActionDispatch::Request
 def local?
   false
 end
end