Files
sterivein/web/index.php
franck 2b0fdc670b Merge
2013-07-08 13:25:08 +02:00

17 lines
365 B
PHP
Executable File

<?php
use Thelia\Core\Thelia;
use Thelia\Core\HttpFoundation\Request;
//use Symfony\Component\DependencyInjection;
$env = 'prod';
require __DIR__ . '/../core/bootstrap.php';
$request = Request::createFromGlobals();
$thelia = new Thelia("prod", false);
$response = $thelia->handle($request)->prepare($request)->send();
$thelia->terminate($request, $response);