innhold/content/index.php
2025-10-02 17:01:55 +02:00

9 lines
231 B
PHP

<?php
// Handle /app static file requests
if (str_starts_with($_SERVER['REQUEST_URI'], '/app/')) {
require __DIR__ . '/../app/static.php';
exit;
}
// All other requests go to router
require __DIR__ . '/../app/router.php';