Sorry, the page you are looking for could not be found.

Sorry, the page you are looking for could not be found.


(1/1) NotFoundHttpException

in RouteCollection.php (line 179)
at RouteCollection->match(object(Request))in Router.php (line 546)
at Router->findRoute(object(Request))in Router.php (line 525)
at Router->dispatchToRoute(object(Request))in Router.php (line 511)

真的会犯低级错误,跳转报错!!!

//渲染
return redirect("/post/{$post->id}");
渲染模板的时候,路由问题改成:

//渲染
return redirect("/posts/{$post->id}");




你可能感兴趣的:(laravel)