How to rescue page not found 404 in rails?

exception, ruby-on-rails

Solution

i found the solution, check this out => http://techoctave.com/c7/posts/36-rails-3-0-rescue-from-routing-error-solution (great solution)

routes.rb :

# at the end of you routes.rb
match '*a', :to => 'errors#routing', via: :get

errors_controller.rb :

class ErrorsController < ApplicationController
  def routing
    render_404
  end
end

application.rb :

rescue_from ActionController::RoutingError, :with => :render_404

 private
  def render_404(exception = nil)
    if exception
        logger.info "Rendering 404: #{exception.message}"
    end

    render :file => "#{Rails.root}/public/404.html", :status => 404, :layout => false
  end

Problem

How to rescue page not found if user add wrong url in rails. I hope to show 404 page present in public folder if the url is invalid. How to do that? I was browsing about it but could not find a solution. I tried many ways to fix the problem, but they don't seem to be working. I am stuck here, please help.

Original source

Related problems