我正在使用1.2.2高压,在轨道3.2.2应用程序上,并且似乎无法让我的应用程序在找不到页面时触发自定义404 - 我只是得到“路由错误,没有这样的页面:“错误页面。
routes.rb中:
...
match '/signup', to: 'users#new'
root :to => 'high_voltage/pages#show', :id => 'home'
match '/404', :to => 'errors#not_found'
match '/422', :to => 'errors#server_error'
match '/500', :to => 'errors#server_error'
match '/:id' => 'high_voltage/pages#show', :as => :static, :via => :get
我还在application.rb中设置了以下内容(我认为是Rails 3.2启动路由错误的方法):
config.exceptions_app = self.routes
但我仍然得到默认的路由错误页面。
我也尝试在我的app控制器中使用它:
unless config.consider_all_requests_local
rescue_from Exception, :with => :render_500
rescue_from ActiveRecord::RecordNotFound, :with => :render_404
rescue_from ActionController::RoutingError, :with => :render_404
rescue_from ActionController::UnknownController, :with => :render_404
rescue_from ActionController::UnknownAction, :with => :render_404
end
protected
def render_500 exception
logger.error exception.inspect
render :template => "/errors/server_error.html.haml", :status => 500, :layout => 'application'
end
def render_404 exception
logger.error exception.inspect
render :template => "/errors/not_found.html.haml", :status => 404, :layout => 'application'
end
但它仍然不起作用。
我很难过!有人可以帮忙吗?
答案 0 :(得分:2)
我可以通过以下修改获得使用高压的自定义404页面:
注意:如果您在本地进行测试,则需要运行RAILS_ENV=production rails s
,因为开发模式会显示不同的404错误页面。
# config/application.rb
config.exceptions_app = self.routes
# config/routes.rb
get '/404', to: 'errors#not_found'
然后我们只需要为ErrorsController
errors/not_found.html.erb
和一个视图