Skip to content

Instantly share code, notes, and snippets.

@jsmestad
Created September 21, 2011 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsmestad/1233069 to your computer and use it in GitHub Desktop.
Save jsmestad/1233069 to your computer and use it in GitHub Desktop.
def render_404(exception = nil)
if exception
logger.info "Rendering 404 with exception: #{exception.message}"
end
respond_to do |format|
format.html { render :file => "#{Rails.root}/public/404.html", :status => :not_found }
format.xml { head :not_found }
format.any { head :not_found }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment