8 lines
169 B
PHP
8 lines
169 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../app/bootstrap.php';
|
|
|
|
header('Location: ' . (app_tracker_area_enabled() ? '/tracker.php' : '/'), true, 302);
|
|
exit;
|