To render your own not found page:
rescue_from ActionController::RoutingError, ActiveRecord::RecordNotFound do |exception|
raise exception unless request.format.html?
render 'shared/not_found'
endMar 13, 2026
To render your own not found page:
rescue_from ActionController::RoutingError, ActiveRecord::RecordNotFound do |exception|
raise exception unless request.format.html?
render 'shared/not_found'
end