dongqie5529 2014-07-02 10:39
浏览 150

当Phalcon中不存在Controller时,如何回退到IndexController?

When I enter url like:

http://localhost/asdfasdfasdcxccarf

Phalcon is giving me this message:

PhalconException: AsdfasdfasdcxccarfController handler class cannot be loaded

Which is logical, because this controller doesn't exist.

However, how can I make Phalcon to redirect every bad url that doesn't have controller to my default controller IndexController?

  • 写回答

2条回答 默认 最新

  • dongwei1234 2014-07-02 11:21
    关注

    You can add following dispatcher service to the dependency injection container. It will check for internal Phalcon errors (like wrong controller for example) and forward user to the specified controller and action:

    $di->set('dispatcher', function() {
    
        $eventsManager = new \Phalcon\Events\Manager();
    
        $eventsManager->attach("dispatch:beforeException", function($event, $dispatcher, $exception) {
    
            //Handle 404 exceptions
            if ($exception instanceof \Phalcon\Mvc\Dispatcher\Exception) {
                $dispatcher->forward(array(
                    'controller' => 'index',
                    'action' => 'show404'
                ));
                return false;
            }
    
            //Handle other exceptions
            $dispatcher->forward(array(
                'controller' => 'index',
                'action' => 'show503'
            ));
    
            return false;
        });
    
        $dispatcher = new \Phalcon\Mvc\Dispatcher();
    
        //Bind the EventsManager to the dispatcher
        $dispatcher->setEventsManager($eventsManager);
    
        return $dispatcher;
    
    }, true);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 用hfss做微带贴片阵列天线的时候分析设置有问题
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥120 计算机网络的新校区组网设计
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据