3
2

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エラー:新しいルーティング作ったぞ!=>「404 not found」

Last updated at Posted at 2022-03-01

ある日laravelのプロジェクトを触っていた時に出会ったエラー
いつも通りweb.phpにroutingを追加、controllerを作成よしアクセスしようと思ったら404 not foundの文字が。
pathはあってる、タイポもしていない、なぜエラーが出るのか理解に時間がかかった。

原因

原因はルーティングの各順番を間違えていた。
初歩的なミスであったが、エラーコードから読み取ることができず時間がかかった。
ルーティングは上から読み込まれるので、hogeでアクセスしたつもりが{user}として読み込まれてしまい上手く動かない。

web.php
Route::get('/users/{user}', 'User@show');
Route::get('/users/hoge', 'User@hoge');

正しくは

web.php
Route::get('/users/hoge', 'User@hoge');
Route::get('/users/{user}', 'User@show');

「/」で区切ってあるならok

web.php
Route::get('/users/{user}', 'User@show');
Route::get('/users/some/hoge', 'User@hoge');

これで解消しなかった場合

cacheを消せば動く可能性がある。

terminal
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear

キャッシュの再読み込みなど参考
https://qiita.com/Ping/items/10ada8d069e13d729701

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?