<?php
declare(strict_types=1);

// 把下面 5 条网址替换为你的真实跳转网址。
$urls = [
    'https://www.php1one.top/',
    'https://www.php2one.top/',
    'https://www.php3one.top/',
    'https://www.php4one.top/',
    'https://www.php5one.top/',
];

// 防止浏览器或代理缓存随机跳转结果。
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Pragma: no-cache');

// 随机选择一条网址，并使用 HTTP 302 临时跳转。
$targetUrl = $urls[random_int(0, count($urls) - 1)];
header('Location: ' . $targetUrl, true, 302);
exit;
