dongyin4202 2013-10-05 18:35
浏览 38
已采纳

路线不存在时重定向laravel 4

I'm using laravel 4 and when i have my project in production mode, i get "Sorry, the page you are looking for could not be found." when i hit a non existing route...

When i grep my code it's found in two places:

./vendor/symfony/debug/Symfony/Component/Debug/ExceptionHandler.php:129:                $title = 'Sorry, the page you are looking for could not be found.';
./vendor/symfony/debug/Symfony/Component/Debug/Tests/ExceptionHandlerTest.php:52:        $this->assertContains('Sorry, the page you are looking for could not be found.', $response->getContent());

No i would like to specify a route to handle 404's, but can't seem to find how to do this...

And the can someone maybe explain why it's using symfony error handling and where setting for that can be found?

  • 写回答

1条回答 默认 最新

  • douzhang7603 2013-10-05 18:41
    关注

    You may register an error handler that handles all "404 Not Found" errors in your application, allowing you to return custom 404 error pages:

    App::missing(function($exception)
    {
        // return Response::view('errors.missing', array(), 404);
        return Redirect::to('someurl');
    });
    

    Check documentation.

    Also, Laravel uses some Symphony components to simplify the development process of some core functionality of it's framework, including routing, response and many more.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?
  • ¥15 QTOF MSE数据分析
  • ¥15 平板录音机录音问题解决
  • ¥15 请问维特智能的安卓APP在手机上存储传感器数据后,如何找到它的存储路径?
  • ¥15 (SQL语句|查询结果翻了4倍)
  • ¥15 Odoo17操作下面代码的模块时出现没有'读取'来访问
  • ¥50 .net core 并发调用接口问题
  • ¥15 网上各种方法试过了,pip还是无法使用
  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 Hadoop集群部署启动Hadoop时碰到问题