Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created November 14, 2012 10:20
Show Gist options
  • Save jugyo/4071380 to your computer and use it in GitHub Desktop.
Save jugyo/4071380 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
# see also: http://stackoverflow.com/questions/2385799/how-to-redirect-to-a-404-in-rails
def not_found!
raise ActionController::RoutingError.new('Not Found')
end
end
@wtnabe
Copy link

wtnabe commented Nov 14, 2012

あーそうか。真面目に render :status とかやるから面倒なのか。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment