小编Kel*_*ins的帖子

Symfony2从事件侦听器重定向到URL

当symfony抛出异常时,我需要从EventListener重定向到自定义URL

在我的service.yml

app.exception_listener:
    class: AppBundle\EventListener\ExceptionListener
    tags:
        - { name: kernel.event_listener, event: kernel.exception, method: onKernelException  }
Run Code Online (Sandbox Code Playgroud)

在我的PHP课程中

<?php

namespace AppBundle\EventListener;

use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\HttpFoundation\RedirectResponse;

class ExceptionListener {

public function onKernelException(GetResponseForExceptionEvent $event) {
    // You get the exception object from the received event
    $exception = $event->getException();

    if ($exception instanceof NotFoundHttpException) {

        //i need this function
        return $this->redirect('https://www.google.co.ve/?gws_rd=ssl', 404);
    }
}

}
Run Code Online (Sandbox Code Playgroud)

php symfony

1
推荐指数
1
解决办法
2637
查看次数

标签 统计

php ×1

symfony ×1