unregister(); $apcLoader->register(true); */ require_once __DIR__.'/../app/AppKernel.php'; //require_once __DIR__.'/../app/AppCache.php'; require_once __DIR__.'/legacy.php'; use Sonata\PageBundle\Request\RequestFactory; // if you want to use the SonataPageBundle with multisite // using different relative paths, you must change the request // object to use the SiteRequest $request = RequestFactory::createFromGlobals('host_with_path_by_locale'); // When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter $request->enableHttpMethodParameterOverride(); $kernel = new AppKernel('prod', false); $response = $kernel->handle($request); $response->send(); $kernel->terminate($request, $response);