1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
10 lines
294 B
PHP
10 lines
294 B
PHP
<?php
|
|
/**
|
|
* Heli — Default-Route führt zur Simulation.
|
|
* Die Übersichtskarte (mit allen DB-Waypoints, Stützpunkten,
|
|
* Städten, Gipfeln) liegt unter /heli-uebersicht.
|
|
*/
|
|
require_once __DIR__ . '/../php/config/app.php';
|
|
header('Location: ' . BASE_PATH . '/heli-game', true, 302);
|
|
exit;
|