0
A
回答
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');
相關問題
- 1. 刪除JSF錯誤消息
- 2. Wordpress站點上的錯誤消息
- 3. Laravel 4 - 生產站點自定義錯誤頁面
- 4. - [R聚類產生錯誤消息
- 5. 生產異常錯誤消息
- 6. 刪除js中的錯誤消息,如果點擊按鈕
- 7. Laravel產生錯誤的URL
- 8. 刪除約束時的錯誤消息
- 9. 生產環境中的laravel的更好的消息[錯誤頁面]
- 10. 消除產生XJB文件錯誤
- 11. Laravel php artisan產生錯誤
- 12. 登錄錯誤消息Laravel
- 13. 錯誤消息laravel不行
- 14. 如何刪除錯誤消息
- 15. 如何刪除錯誤消息 - IIS7
- 16. powershell - 根據錯誤消息刪除行
- 17. 添加或刪除woocommerce錯誤消息
- 18. 刪除simple_form_for默認錯誤消息
- 19. 激活laravel中的錯誤消息4.2
- 20. 在內部項目中顯示生產中的錯誤消息
- 21. 驗證:發生錯誤時刪除自定義成功消息
- 22. 刪除/清除錯誤消息工具提示取消按鈕點擊
- 23. 刪除輸入錯誤消息後點擊輸入
- 24. 刪除生產APN
- 25. 當刪除錯誤消息時,TextInputLayout的錯誤視圖不會被刪除
- 26. 在ItemTemplate中的WPF綁定工作,但產生錯誤消息
- 27. 在laravel中未顯示錯誤消息
- 28. Laravel Auth中間件錯誤消息
- 29. 新的WordPress站點中的錯誤消息
- 30. 如何在laravel中生成錯誤消息
它爲我工作。謝謝。 –