Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - rt8m.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 03 May 2025 13:27:21 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Location: https://rt8m.com/
Strict-Transport-Security: max-age=31536000
Alt-Svc: h3=":443"; ma=86400
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=5eQ7HUPMkxHpwLphh40n%2BFfWDfGR3FFyuaSTJRJUS24O1wN5zdQrOTEXXQWYWlGDwRz7%2BJtFu8%2FZ8nXgzXMt35AYbpkGNLGSeY%2B8bFb7LRNyzS56oONk6zjpFwynsFc0WC4tfp%2F0UQ%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93a018645d92eb4a-CPH
server-timing: cfL4;desc="?proto=TCP&rtt=14937&min_rtt=14937&rtt_var=7468&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=164&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

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://rt8m.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 03 May 2025 13:27:22 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: cloudflare
Vary: Accept-Encoding
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Alt-Svc: h3=":443"; ma=86400
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
X-Cache: HIT
Strict-Transport-Security: max-age=31536000
Cf-Cache-Status: DYNAMIC
Set-Cookie: X_CACHE_KEY=44ac1117864661b5e91adb721ba79367; Path=/; Expires=Fri, 31 Dec 9999 23:59:59 GMT
CF-RAY: 93a018686a7f2625-CPH

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: rt8m.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">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <meta http-equiv="Refresh" content="600;url=https://rt8m.com" />
    <title>Welcome</title>
    <link rel="stylesheet" href="css/index.css">
</head>
<body>

    <div class="search-box">
        <form action="" method="post">
            <div class="search">
                <input type="text" name="code" class="search-input" placeholder="" required>
                <button class="search-btn" type="submit">
                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">
                        <path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
                    </svg>
                    <span>搜索</span>
                </button>
            </div>
        </form>
    </div>
    <footer>
        <div class="browser">
            <a href="https://support.microsoft.com/zh-tw/help/17621/internet-explorer-downloads" class="invisbleBtn ie" target="_blank"></a>
            <a href="https://www.mozilla.org/zh-TW/firefox/new/?utm_medium=referral&amp;utm_source=firefox-com" class="invisbleBtn mz" target="_blank"></a>
            <a href="https://www.google.com/chrome/" class="invisbleBtn ch" target="_blank"></a>
            <a href="https://browser.qq.com/" class="invisbleBtn qq" target="_blank"></a>
            <a href="https://browser.360.cn/se/" class="invisbleBtn cn360" target="_blank"></a>
        </div>
    </footer>

<script src="js/jquery.min.js"></script>
<script src="js/ping.js"></script>
<script>
    $(function () {
        pingUrl();
    })

    function pingUrl () {
        $( ".jump-url" ).each(function( index ) {
            const _this = $(this);
            const url =  _this.attr('href');
            ping(url).then(function(delta) {
                var ping = delta/8;
                ping = Math.floor(ping);
                ping = ping + "ms";
                const time = getTime();
                _this.children('em').text(ping);
                if (isMobile()) {
                    _this.children('.time').text(time)
                }

            }).catch(function(error) {
                const time = getTime();
                _this.children('em').text("连接超时");
                if (isMobile()) {
                    _this.children('.time').text(time)
                }
            });

        });
    }

    function getTime() {
        // 创建一个新的Date对象,表示当前日期和时间
        const currentDateTime = new Date();

        // 获取年、月、日、小时、分钟和秒数
        const year = currentDateTime.getFullYear(); // 四位数字形式的年份(2019)
        const month = (currentDateTime.getMonth() + 1).toString().padStart(2, '0'); // 两位数字形式的月份(01-12)
        const day = currentDateTime.getDate().toString().padStart(2, '0'); // 两位数字形式的天数(01-31)
        const hours = currentDateTime.getHours().toString().padStart(2, '0'); // 两位数字形式的小时数(00-23)
        const minutes = currentDateTime.getMinutes().toString().padStart(2, '0'); // 两位数字形式的分钟数(00-59)
        const seconds = currentDateTime.getSeconds().toString().padStart(2, '0'); // 两位数字形式的秒数(00-59)

        // 根据需要自定义日期和时间的显示格式
        return  `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
    }


    function isMobile() {
        let flag = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
        return flag;
    }
</script>
</body>
</html>                               

Whois info of domain

Domain Name: RT8M.COM
Registry Domain ID: 2973653284_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2025-04-09T06:26:20Z
Creation Date: 2025-04-09T06:20:41Z
Registry Expiry Date: 2026-04-09T06:20:41Z
Registrar: Alibaba Cloud Computing Ltd. d/b/a HiChina (www.net.cn)
Registrar IANA ID: 1599
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: ARIELLA.NS.CLOUDFLARE.COM
Name Server: STEVEN.NS.CLOUDFLARE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-03T13:27:15Z <<<
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