innhold/content/index.php

10 lines
231 B
PHP
Raw Normal View History

2025-10-02 17:01:55 +02:00
<?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';