Laravel 預設例外路由會直接把錯誤訊息印到頁面上
public function render($request, Exception $e) { return parent::render($request, $e); }//app/Exceptions/Handler.php
將原本句子改為以下,轉到指定的路由去
public function render($request, Exception $e) { \return Redirect::to('/'); }//app/Exceptions/Handler.php
沒有留言:
張貼留言