1
1

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 3 years have passed since last update.

【Laravel】Routingがあっているはずなのに404となった場合の対処法

Posted at

概要

ブランチ等を切り替えているうちに、Routing登録済みのページで404となる現象が発生したためその時の対処法を記録

開発環境

Docker
PHP 8.0.8
Laravel 8.32.1

対処法

正しいroutingが登録されていない可能性があるため、下記の手順で確認&修正します。

    1.   登録されているroutingを確認
php artisan route:list
    1. 404が出るページのrouting登録が1のリストで表示されない(または正しいものでない)場合、cacheを削除
php artisan route:clear
    1. 再度1のコマンドを打ち、正しいroutingとなったことを確認して該当ページの表示確認を実施
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?