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