当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)