5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails のローカル環境で 404 ページを確認する

Posted at

はじめに

404 ページに動的な要素を追加したい時は 404 ページを自作する必要があるが、ローカル環境でありもしない URL を叩いて確認しても Routing Error にあるだけなので、実際の表示を確認できるようにローカル環境で Routing Error ではなく 404 ページを表示させるようにする。

実装

config/environments/development.rb を以下のように false に書き換えたら終了!

config/environments/development.rb
config.consider_all_requests_local = false

まとめ

これでありもしない URL を叩くとちゃんと 404 ページが表示されるので、404 ページの改修作業等ある時は使えるかと。
ただちゃんと元に戻さないと他の人に迷惑なので、開発が終わればちゃんと true に戻しましょう。

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?