12. Symfony\Component\HttpKernel\Exception\NotFoundHttpException
…/­bootstrap/­compiled.php5738
11. Illuminate\Routing\RouteCollection match
…/­bootstrap/­compiled.php5060
10. Illuminate\Routing\Router findRoute
…/­bootstrap/­compiled.php5048
9. Illuminate\Routing\Router dispatchToRoute
…/­bootstrap/­compiled.php5040
8. Illuminate\Routing\Router dispatch
…/­bootstrap/­compiled.php715
7. Illuminate\Foundation\Application dispatch
…/­bootstrap/­compiled.php696
6. Illuminate\Foundation\Application handle
…/­bootstrap/­compiled.php7812
5. Illuminate\Session\Middleware handle
…/­bootstrap/­compiled.php8419
4. Illuminate\Cookie\Queue handle
…/­bootstrap/­compiled.php8366
3. Illuminate\Cookie\Guard handle
…/­bootstrap/­compiled.php11029
2. Stack\StackedHttpKernel handle
…/­bootstrap/­compiled.php657
1. Illuminate\Foundation\Application run
…/­public/­index.php53
0. require_once
…/­index.php20

Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException Symfony\Component\HttpKernel\Exception\NotFoundHttpException thrown with message "" Stacktrace: #12 Symfony\Component\HttpKernel\Exception\NotFoundHttpException in /var/www/html/pjev/bootstrap/compiled.php:5738 #11 Illuminate\Routing\RouteCollection:match in /var/www/html/pjev/bootstrap/compiled.php:5060 #10 Illuminate\Routing\Router:findRoute in /var/www/html/pjev/bootstrap/compiled.php:5048 #9 Illuminate\Routing\Router:dispatchToRoute in /var/www/html/pjev/bootstrap/compiled.php:5040 #8 Illuminate\Routing\Router:dispatch in /var/www/html/pjev/bootstrap/compiled.php:715 #7 Illuminate\Foundation\Application:dispatch in /var/www/html/pjev/bootstrap/compiled.php:696 #6 Illuminate\Foundation\Application:handle in /var/www/html/pjev/bootstrap/compiled.php:7812 #5 Illuminate\Session\Middleware:handle in /var/www/html/pjev/bootstrap/compiled.php:8419 #4 Illuminate\Cookie\Queue:handle in /var/www/html/pjev/bootstrap/compiled.php:8366 #3 Illuminate\Cookie\Guard:handle in /var/www/html/pjev/bootstrap/compiled.php:11029 #2 Stack\StackedHttpKernel:handle in /var/www/html/pjev/bootstrap/compiled.php:657 #1 Illuminate\Foundation\Application:run in /var/www/html/pjev/public/index.php:53 #0 require_once in /var/www/html/pjev/index.php:20

        if (!is_null($route)) {
            return $route->bind($request);
        }
        $others = $this->checkForAlternateVerbs($request);
        if (count($others) > 0) {
            return $this->getOtherMethodsRoute($request, $others);
        }
        throw new NotFoundHttpException();
    }
    protected function checkForAlternateVerbs($request)
        }
        $response = $this->prepareResponse($request, $response);
        $this->callRouteAfter($route, $request, $response);
        return $response;
    }
    protected function findRoute($request)
    {
        $this->current = $route = $this->routes->match($request);
        return $this->substituteBindings($route);
    }
        }
        $response = $this->prepareResponse($request, $response);
        $this->callFilter('after', $request, $response);
        return $response;
    }
    public function dispatchToRoute(Request $request)
    {
        $route = $this->findRoute($request);
        $this->events->fire('router.matched', array($route, $request));
        $response = $this->callRouteBefore($route, $request);
        return isset($group['namespace']) ? $group['namespace'] . '\\' . $uses : $uses;
    }
    public function dispatch(Request $request)
    {
        $this->currentRequest = $request;
        $response = $this->callFilter('before', $request);
        if (is_null($response)) {
            $response = $this->dispatchToRoute($request);
        }
        $response = $this->prepareResponse($request, $response);
            if (!is_null($response)) {
                return $this->prepareResponse($response, $request);
            }
        }
        if ($this->runningUnitTests() && !$this['session']->isStarted()) {
            $this['session']->start();
        }
        return $this['router']->dispatch($this->prepareRequest($request));
    }
    public function terminate(SymfonyRequest $request, SymfonyResponse $response)
        });
    }
    public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        try {
            $this->refreshRequest($request = Request::createFromBase($request));
            $this->boot();
            return $this->dispatch($request);
        } catch (\Exception $e) {
            if (!$catch || $this->runningUnitTests()) {
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $this->checkRequestForArraySessions($request);
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);
            $request->setSession($session);
        }
        $response = $this->app->handle($request, $type, $catch);
        if ($this->sessionConfigured()) {
            $this->closeSession($session);
    public function __construct(HttpKernelInterface $app, CookieJar $cookies)
    {
        $this->app = $app;
        $this->cookies = $cookies;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $response = $this->app->handle($request, $type, $catch);
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
    public function __construct(HttpKernelInterface $app, Encrypter $encrypter)
    {
        $this->app = $app;
        $this->encrypter = $encrypter;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
    }
    protected function decrypt(Request $request)
    public function __construct(HttpKernelInterface $app, array $middlewares)
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
    public function terminate(Request $request, Response $response)
        if ($this->isBooted()) {
            $this->fireAppCallbacks(array($callback));
        }
    }
    public function run(SymfonyRequest $request = null)
    {
        $request = $request ?: $this['request'];
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
 
$app->run();
 
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' and file_exists($requested))
{
	return false;
}
 
require_once $paths['public'].'/index.php';
 
Key Value
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI www.pjeveracruz.gob.mx
REDIRECT_STATUS 200
HTTPS on
SSL_TLS_SNI www.pjeveracruz.gob.mx
SSL_SERVER_S_DN_C MX
SSL_SERVER_S_DN_ST Veracruz
SSL_SERVER_S_DN_L Xalapa-Enriquez
SSL_SERVER_S_DN_O Poder Judicial del Estado de Veracruz
SSL_SERVER_S_DN_CN *.pjeveracruz.gob.mx
SSL_SERVER_I_DN_C US
SSL_SERVER_I_DN_O DigiCert Inc
SSL_SERVER_I_DN_OU www.digicert.com
SSL_SERVER_I_DN_CN GeoTrust TLS RSA CA G1
SSL_SERVER_SAN_DNS_0 *.pjeveracruz.gob.mx
SSL_SERVER_SAN_DNS_1 pjeveracruz.gob.mx
SSL_VERSION_INTERFACE mod_ssl/2.4.29
SSL_VERSION_LIBRARY OpenSSL/1.1.1
SSL_PROTOCOL TLSv1.3
SSL_SECURE_RENEG true
SSL_COMPRESS_METHOD NULL
SSL_CIPHER TLS_AES_256_GCM_SHA384
SSL_CIPHER_EXPORT false
SSL_CIPHER_USEKEYSIZE 256
SSL_CIPHER_ALGKEYSIZE 256
SSL_CLIENT_VERIFY NONE
SSL_SERVER_M_VERSION 3
SSL_SERVER_M_SERIAL 0FF72781918BA242E66FBC9E4434B4C7
SSL_SERVER_V_START Mar 27 00:00:00 2023 GMT
SSL_SERVER_V_END Mar 30 23:59:59 2024 GMT
SSL_SERVER_S_DN CN=*.pjeveracruz.gob.mx,O=Poder Judicial del Estado de Veracruz,L=Xalapa-Enriquez,ST=Veracruz,C=MX
SSL_SERVER_I_DN CN=GeoTrust TLS RSA CA G1,OU=www.digicert.com,O=DigiCert Inc,C=US
SSL_SERVER_A_KEY rsaEncryption
SSL_SERVER_A_SIG sha256WithRSAEncryption
SSL_SESSION_ID ef56d2f5cb99f453e53f03e57de7a7720973391e56b35d8ad9de3e8f7c86134a
SSL_SESSION_RESUMED Initial
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST www.pjeveracruz.gob.mx
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
SERVER_SIGNATURE <address>Apache/2.4.29 (Ubuntu) Server at www.pjeveracruz.gob.mx Port 443</address>
SERVER_SOFTWARE Apache/2.4.29 (Ubuntu)
SERVER_NAME www.pjeveracruz.gob.mx
SERVER_ADDR 192.168.2.30
SERVER_PORT 443
REMOTE_ADDR 34.228.7.237
DOCUMENT_ROOT /var/www/html
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/html
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/html/pjev/index.php
REMOTE_PORT 47850
REDIRECT_URL /pjev/Presidencia
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /pjev/Presidencia
SCRIPT_NAME /pjev/index.php
PHP_SELF /pjev/index.php
REQUEST_TIME_FLOAT 1710827942.9431
REQUEST_TIME 1710827942
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler