1 2 3 4 5 6 7 8 9 10
# We render http errors ourselves so we can customize them class ErrorsController < ApplicationController # 404 def not_found end # 500 def server_error end end