'text/css; charset=UTF-8', 'js' => 'application/javascript; charset=UTF-8', 'json' => 'application/json; charset=UTF-8', 'png' => 'image/png', 'jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'gif' => 'image/gif', 'svg' => 'image/svg+xml', 'webp' => 'image/webp', 'ico' => 'image/x-icon', ]; $extension = strtolower(pathinfo($file, PATHINFO_EXTENSION)); header('Content-Type: ' . ($contentTypes[$extension] ?? 'application/octet-stream')); header('Content-Length: ' . filesize($file)); readfile($file); exit; } require __DIR__ . '/index.php';