私はカスタム404ページを作成するためにexception_handler gemを使用しています。自分のサイトの404ページに移動しても表示されませんが、このページをカスタマイズするにはどうすればいいですか?私は、経路を変更しようとしましたが、errors_controllerとnot_foundのビューを作りました。Rails exception_handler gemが更新されない404ページ
application.rb
config.exceptions_app = self.routes
routes.rbを
get "/404", :to => "errors#not_found"
get "/422", :to => "errors#unacceptable"
get "/500", :to => "errors#internal_error"
errors_controller.rb
class ErrorsController < ApplicationController
def not_found
render :status => 404 end
def unacceptable
render :status => 422 end
def internal_error
render :status => 500 end
end
<label> TEST 404 Label </label>