3 * This file is part of the TYPO3 CMS project.
5 * It is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License, either version 2
7 * of the License, or any later version.
9 * For the full copyright and license information, please read the
10 * LICENSE.txt file that was distributed with this source code.
12 * The TYPO3 project - inspiring people to share!
16 * This is the MAIN DOCUMENT of the TypoScript driven standard frontend.
17 * Basically this is the "index.php" script which all requests for TYPO3
18 * delivered pages goes to in the frontend (the website)
21 define('TYPO3_MODE', 'FE');
23 require __DIR__
. '/typo3/sysext/core/Classes/Core/Bootstrap.php';
24 \TYPO3\CMS\Core\Core\Bootstrap
::getInstance()
26 ->redirectToInstallerIfEssentialConfigurationDoesNotExist()
27 ->startOutputBuffering()
28 ->loadConfigurationAndInitialize();
30 $frontendRequestHandler = new \TYPO3\CMS\Frontend\
FrontendRequestHandler();
31 $frontendRequestHandler->handleRequest();