mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-16 02:52:07 +00:00
12 lines
288 B
PHP
12 lines
288 B
PHP
<?php
|
|
|
|
global $legacyRoute;
|
|
|
|
if (isset($legacyRoute['script-name'], $legacyRoute['request-uri'])) {
|
|
$_SERVER['SCRIPT_NAME'] = $legacyRoute['script-name'];
|
|
$_SERVER['REQUEST_URI'] = $legacyRoute['request-uri'];
|
|
}
|
|
|
|
chdir('../');
|
|
require_once __DIR__ . '/Core/app.php';
|
|
$app->run();
|