mirror of
https://gitlab.com/CodeSolutionsProject/CodeShare.git
synced 2026-02-14 17:11:34 +01:00
11 lines
219 B
PHP
11 lines
219 B
PHP
<?php
|
|
|
|
$filename = __DIR__.preg_replace('#(\?.*)$#', '', $_SERVER['REQUEST_URI']);
|
|
if (php_sapi_name() === 'cli-server' && is_file($filename)) {
|
|
return false;
|
|
}
|
|
require_once __DIR__ . '/src/app.php';
|
|
|
|
$app->run();
|
|
|