'text/css', 'js' => 'application/javascript', 'json' => 'application/json', 'png' => 'image/png', 'jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'gif' => 'image/gif', 'svg' => 'image/svg+xml', 'ico' => 'image/x-icon', 'woff' => 'font/woff', 'woff2'=> 'font/woff2', 'ttf' => 'font/ttf', ]; if (isset($mimes[$ext])) { header('Content-Type: ' . $mimes[$ext]); } readfile($filePath); exit; } // 3. Serve Frontend Application if (file_exists(__DIR__ . '/static/index.html')) { header('Content-Type: text/html; charset=utf-8'); readfile(__DIR__ . '/static/index.html'); exit; } echo "سامانه مدیریت مسائل شهری شهرنگار فعال است.";