For one of my projects I\'m getting this exception every now and then:
ActionView::MissingTemplate: Missing template blogs/index with {:handlers=>[:rx
Here is a stricter response; a suggestion by purp, from the discussion on issue 4127.
class FooController rescue_from ActionView::MissingTemplate, :with => :missing_template def missing_template render :nothing => true, :status => 406 end end