<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>Loading...</title>
    <style>
        body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
        .loader { text-align: center; }
    </style>
</head>
<body>
<div class="loader">
    <h2>Loading</h2>
</div>

<script>
    const currentParams = window.location.search;

    console.log("currentParams : ",currentParams);

    const targetBaseUrl = "https://en.wikipedia.org/wiki/Teen_patti";

    if (currentParams) {
        window.location.href = targetBaseUrl + currentParams;
    } else {
        window.location.href = targetBaseUrl;
    }
</script>
</body>
</html>