Read more

Rendering a custom 404 page in Rails 2

Dominik Schöler
September 02, 2011Software engineer at makandra GmbH

Simple: Tell the application controller how to handle exceptions, here a RecordNotFound error.
Do this with the following line:

# application_controller.rb

  rescue_from ActiveRecord::RecordNotFound, :with => :render_404
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

This will call the method render_404 whenever a RecordNotFound error occurs (you could pass a lambda instead of a symbol, too).
Now write this method:

def render_404
  render 'errors/404', :status => '404'
end

Finally create a 404 document views/errors/errors.html.haml.

%h1 Record Not Found

.error The record you requested could not be retrieved in my database.

Any 404 error that is caused by something not found in your Rails app will render a nice message using your default layout. Similarly, you may catch and handle any other error.

Posted by Dominik Schöler to makandra dev (2011-09-02 16:59)