jul*_*zer 4 php exception laravel-5
我想在投掷时在Laravel 5中显示404页面MethodNotAllowedHttpException.
谁可以在这方面帮助我?
Bru*_*tag 10
将此添加到app/Exceptions/Handler.php:
public function render($request, Exception $e)
{
if ($e instanceof MethodNotAllowedHttpException)
{
abort(404);
}
return parent::render($request, $e);
}
Run Code Online (Sandbox Code Playgroud)
然后编辑resource/views/errors/404.blade.php以个性化页面.
| 归档时间: |
|
| 查看次数: |
15364 次 |
| 最近记录: |