2014-01-27 85 views

回答

4

不讓用戶看到錯誤消息,您必須:

1)打開你的app/config/app.php並設置

'debug' => false 

2)打開你的app/start/global.php和編輯:

App::error(function(Exception $exception, $code) 
{ 
    Log::error($exception); 

    return "whatever you need here!"; // <---- add a return command 
}); 

3)這個返回線可能類似於:

return Redirect::route('userErrorMessageRouteName'); 

return View::make('userErrorMessageView'); 
+0

它爲我工作。謝謝。 –