你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
[已注销]
赞同来自: 邂逅的流年
JasonLaravel
赞同来自: 错落流年
public function render($request, Exception $e) { if($e instanceof ModelNotFoundException){ if($request->ajax()){ return response()->json(['ret'=>'ERROR','message'=>'Model Not Found'],404); } return response()->view('errors.404',[],404); } if($e instanceof TokenMismatchException){ if($request->ajax()){ return response()->json(['ret'=>'ERROR','message'=>'Token Mismatch'],400); } \Flash::error('表单重复提交,请刷新页面再试!'); return \Redirect::back()->withInput()->withErrors('表单重复提交,请刷新页面再试!'); } return parent::render($request, $e); }
错落流年
赞同来自:
Sorry, the page you are looking for could not be found.
双子星 - Laravel群:9783891
//伪静态 Route::get('/{html}.html', function ($html) { if (view()->exists($html)) { return view($html); } abort(404); });
要回复问题请先登录或注册
5 个回复
[已注销]
赞同来自: 邂逅的流年
resources/views/errors/404.blade.php
JasonLaravel
赞同来自: 错落流年
错落流年
赞同来自:
JasonLaravel
赞同来自:
双子星 - Laravel群:9783891
赞同来自:
第一,在resources/views/errors/下建404.blade.php模版;第二,在路由匹配失败时abort(404).