Error 404 Not Found

GET https://bavtest.net/about.php525/

Exceptions

Not Found

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
0 of 0
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#899 â–¼ -statusCode: 404 -headers: [] }
  1.      *
  2.      *     throw $this->createNotFoundException('Page not found!');
  3.      */
  4.     protected function createNotFoundException(string $message 'Not Found'\Throwable $previous null): NotFoundHttpException
  5.     {
  6.         return new NotFoundHttpException($message$previous);
  7.     }
  8.     /**
  9.      * Returns an AccessDeniedException.
  10.      *
AbstractController->createNotFoundException() in src/FrontApp/Infrastructure/Controller/PageController.php (line 43)
  1.     {
  2.         $this->request $request;
  3.         $responseDto $this->pageResolverService->resolve($request$slug);
  4.         if (null === $responseDto) {
  5.             throw $this->createNotFoundException();
  6.         }
  7.         if ($request->isXmlHttpRequest()) {
  8.             return $this->json($this->getAjaxData($responseDto));
  9.         }
  1.     public function oneSlugRedirect(Request $requeststring $slug): Response
  2.     {
  3.         if ($this->parameterBag->get(FeatureFlag::DEFAULT_LOCALE_IN_URL)) {
  4.             return $this->redirectToRoute('page_one_slug_localized', ['_locale' => $request->getDefaultLocale(), 'slug' => $slug], 301);
  5.         }
  6.         return $this->oneSlug($request$slug);
  7.     }
  8.     #[Route('/{_locale<%app.locales%>}/{slug}/'name'page_one_slug_localized'methods: ['GET'])]
  9.     public function oneSlug(Request $requeststring $slug): Response
  10.     {
in vendor/symfony/http-kernel/HttpKernel.php -> oneSlugRedirect (line 181)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/fedevco/front-app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Shared\Infrastructure\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };