Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - ty72c.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Length: 175
Content-Type: text/html
Date: Mon, 19 May 2025 11:43:29 GMT
Location: https://www.ty72c.com/
Server: openresty/1.27.1.1
X-Cache: BYPASS

HTTP Code 301 Moved Permanently

301 Moved Permanently means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://ty72c.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Access-Control-Allow-Origin: *
Content-Type: text/html
Date: Mon, 19 May 2025 11:43:30 GMT
Etag: W/"6b2c8d45271d8fbdbf2883e9afbad46d"
Last-Modified: Mon, 27 Nov 2023 08:31:00 GMT
Server: openresty/1.27.1.1
Vary: Accept-Encoding
X-Amz-Id-2: OcItH6v6MhH9gMcXkYWuwlRp8mvhu9xanIh4/3AZiAsI8fm2vk4kssvBNeS/nz4dVpjsZviJamrqUfQgaBHrYxY+HsMHXJMRAUTCJ9fYrIM=
X-Amz-Request-Id: SKGDPXMDT6Z7KP6T
X-Amz-Version-Id: 47_5n13QXazLilllmURC9fvgIOGupnR8
X-Cache: BYPASS
Transfer-Encoding: chunked

HTTP Code 200 OK

200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: ty72c.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>跳转中...</title>
</head>
<body>
<script type="text/javascript">
    // 获取URL参数
    function getParam(name) {
        var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
        var r = window.location.search.substr(1).match(reg);
        if (r != null) return unescape(r[2]);
        return null;
    }

    // 自动跳转
    let os = function () {
        var ua = navigator.userAgent,
            isWindowsPhone = /(?:Windows Phone)/.test(ua),
            isSymbian = /(?:SymbianOS)/.test(ua) || isWindowsPhone,
            isAndroid = /(?:Android)/.test(ua),
            isFireFox = /(?:Firefox)/.test(ua),
            isChrome = /(?:Chrome|CriOS)/.test(ua),
            isTablet = /(?:iPad|PlayBook)/.test(ua) || (isAndroid && !/(?:Mobile)/.test(ua)) || (isFireFox && /(?:Tablet)/.test(ua)),
            isPhone = /(?:iPhone)/.test(ua) && !isTablet,
            isPc = !isPhone && !isAndroid && !isSymbian;
        return {
            isTablet: isTablet,
            isPhone: isPhone,
            isAndroid: isAndroid,
            isPc: isPc,
            isMobile: isPhone || isAndroid
        };
    }();

    let remainUrl = ''
    searchUrl = location.search.substr(1);
    hashUrl = location.hash.substr(1);
    if (searchUrl) {
        remainUrl += "?" + searchUrl
    }
    if(hashUrl) {
        remainUrl += "#" + hashUrl
    }

    platformType = getParam("type") // app type
    channelId = getParam("channelId") // channelId
    urlHasPc = /(\/pc\/)/.test(window.location.href);
    urlHasMobile = /(\/mobile\/)/.test(window.location.href);
    // const apiUrl = "https://www.hyzhuan.com/"; // online

    // default 2.0
    let pc = "pc2"
    let mobile = "mobile3"
    platformType = 3 // default 2.0
    // // check domain version, only for net cash domain
    // if (platformType == null && channelId == null && getDomainVer(apiUrl) === 2) {
    //     pc = "pc2"
    //     mobile = "mobile3"
    // } else {
    //     // support H5 domain
    //     if(platformType === "3") {
    //         pc = "pc2"
    //         mobile = "mobile3"
    //     } else if(platformType === "2") {
    //         pc = "pc"
    //         mobile = "mobile2"
    //     }
    // }
    //
    // // check channelId
    // if(platformType !== 3 && channelId != null && getChannelVer(apiUrl, channelId) === 2) {
    //     pc = "pc2"
    //     mobile = "mobile3"
    // }

    let result
    if (!urlHasPc && !urlHasMobile) {
        if(os.isPc) {
            location.href = "/"+pc+"/" + remainUrl
        } else if(os.isMobile){
            if(platformType === "2") {
                location.href = "/mobile2/" + remainUrl
            } else {
                location.href = "/"+mobile+"/" + remainUrl
            }
        }
    }

    if (os.isPc && urlHasMobile)  {
        location.href = "/"+pc+"/" + remainUrl
    }

    if (os.isMobile && urlHasPc)  {
        if(platformType === "2") {
            location.href = "/mobile2/" + remainUrl
        } else {
            location.href = "/"+mobile+"/" + remainUrl
        }
    }

    // check channel version
    function getChannelVer(url, channelId) {
        try {
            let res = httpPost(url + "v1/config/getChannelVersion", "ChannelId="+channelId)
            if (res["Data"]["ErrCode"] === 1 && res["Data"]["Version"] === "2.0") {
                return 2
            }
        } catch (e) {
            console.log("getChannelVer error===>", e)
        }

        return 1
    }

    // check domain version
    function getDomainVer(url) {
        try {
            let res = httpPost(url + "v1/config/getH5Domain", "Domain="+window.location.host)
            if (res["Data"]["ErrCode"] === 1 && res["Data"]["Version"] === "2.0") {
                return 2
            }
        } catch (e) {
            console.log("getDomainVer error===>", e)
        }

        return 1
    }

    // make request
    function httpPost(url, ops) {
        console.log("httpPost==>", url, ops);
        let data = {}
        let xhr = new XMLHttpRequest();
        xhr.open('POST', url, false); // false表示同步请求
        xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
        xhr.onreadystatechange = function (e) {
            if (xhr.readyState === 4 && xhr.status === 200) {
                data = JSON.parse(xhr.responseText)
                console.log("responseText===>", data);
            } else {
                console.log("error===>", e);
            }
        };
        xhr.send(ops);
        return data
    }
</script>
</body>
</html>                               

Whois info of domain

Domain Name: TY72C.COM
Registry Domain ID: 2803691824_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2024-07-16T08:44:28Z
Creation Date: 2023-08-05T18:41:29Z
Registry Expiry Date: 2025-08-05T18:41:29Z
Registrar: GoDaddy.com, LLC
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 480-624-2505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS7.ALIDNS.COM
Name Server: NS8.ALIDNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-19T11:43:09Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass