Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
302 Found - sdgdf.com
HTTP Status: 302
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Location: https://sdgdf.com/
Content-Length: 0
Connection: keep-alive
Server: EdgeOne_L7S_OC
Date: Wed, 14 May 2025 22:17:38 GMT
EO-LOG-UUID: 13728562879593419802

HTTP Code 302 Found (Moved Temporarily)

302 Found indicates that the requested resource is temporarily available at a different URL.

When is Code 302 used?

  • When temporarily changing a page URL
  • When testing new content
  • During temporary maintenance

What does Code 302 mean for the user?

The user is automatically redirected to the new URL, but search engines continue to index the old address.

301 Moved Permanently - https://sdgdf.com/
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Content-Type: text/html; charset=utf-8
X-Powered-By: PHP/7.2.34
Set-Cookie: think_var=hk; expires=Wed, 14-May-2025 22:47:46 GMT; Max-Age=1800; path=/; HttpOnly
Set-Cookie: sc3c064f7=17dgptga8ekp9sm9tv2prb1t3q; path=/; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Location: /index/login
Cache-Control: must-revalidate, no-cache
Transfer-Encoding: chunked
Connection: keep-alive
Date: Wed, 14 May 2025 22:17:39 GMT
EO-LOG-UUID: 15750761077597119639
EO-Cache-Status: MISS

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 - /index/login.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Content-Type: text/html; charset=utf-8
X-Powered-By: PHP/7.2.34
Set-Cookie: think_var=hk; expires=Wed, 14-May-2025 22:47:46 GMT; Max-Age=1800; path=/; HttpOnly
Set-Cookie: sc3c064f7=j42cubv7635mrvl3vp1p451pu9; path=/; HttpOnly
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Cache-Control: must-revalidate, no-cache, no-store
Transfer-Encoding: chunked
Connection: keep-alive
Date: Wed, 14 May 2025 22:17:39 GMT
EO-LOG-UUID: 16867856742593126960
EO-Cache-Status: MISS

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: sdgdf.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html><html lang="zh-CN"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>登录页面</title><style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: aliceblue;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            position: relative;
            
        }

        .login-container {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        .login-container h1 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }

        .login-container img {
            display: block;
            margin: 0 auto 20px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }

        .login-container input[type="text"],
        .login-container input[type="password"] {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: none;
            border-bottom: 2px solid #ccc;
            box-sizing: border-box;
            transition: border-color 0.3s ease;
        }

        .login-container input[type="text"]:focus,
        .login-container input[type="password"]:focus {
            outline: none;
            border-bottom: 2px solid #000;
            background-position: center;
            animation: fill 0.6s forwards;
        }

        @keyframes fill {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        .login-container button {
            width: 100%;
            padding: 12px;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .login-container button:hover {
            background-color: #0056b3;
        }

        .login-container .links {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .login-container .links a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .login-container .links a:hover {
            color: #0056b3;
        }

        .language-selector {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
        }

        .language-selector .dropdown {
            display: none;
            position: absolute;
            right: 0;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            z-index: 1000;
        }

        .language-selector .dropdown div {
            padding: 10px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .language-selector .dropdown div:hover {
            background-color: #f1f1f1;
        }

        .language-icon {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 600px) {
            .login-container {
                padding: 20px;
            }

            .login-container h1 {
                font-size: 20px;
            }

            .login-container input[type="text"],
            .login-container input[type="password"],
            .login-container button {
                padding: 10px;
                font-size: 14px;
            }
        }
    </style></head><body><div class="language-selector"><img src="https://cdn-icons-png.flaticon.com/128/3898/3898840.png" alt="Language" class="language-icon"><div class="dropdown"><div id="langcns" onclick="changelang('zh')">繁体中文</div><div id="langcng" onclick="changelang('hk')">简体中文</div><div id="langen" onclick="changelang('en')">English</div><div id="langth" onclick="changelang('th')">ภาษาไทย</div><div id="langth" onclick="changelang('jp')">日本语</div><div id="langth" onclick="changelang('kor')">한국어</div><div id="langth" onclick="changelang('fr')">Français</div><div id="langth" onclick="changelang('de')">Deutsch</div><div id="langth" onclick="changelang('es')">español</div></div></div><div class="login-container"><img src="/upload/92e3ffc0b5ebecdd/3a5615f23ba1a704.png" alt="Logo"><h1>登录</h1><input type="text" placeholder="请输入用户名码或姓名" onfocus="this.placeholder=''"
            onblur="this.placeholder='请输入用户名码或姓名'" name="account" id="phonenumber" /><input type="password" placeholder="请输入登录密码" onfocus="this.placeholder=''"
            onblur="this.placeholder='请输入登录密码'" name="password" id="password" /><button value="登陆" id="login_btn">登陆</button><div class="links"><a href="/index/login/reg">免费开户</a><a href="https://www.zgzskf.com/addons/kefu/">在线客服</a></div></div><script src="https://code.jquery.com/jquery-3.6.0.min.js"></script><script>
        $(document).ready(function () {
            $('.language-selector').click(function () {
                $('.dropdown').fadeToggle();
            });
            $('#login_btn').click(function (event) {
                //event.preventDefault();
                // 在这里添加你的提交逻辑
                //alert('登录按钮被点击');
		const regex = /^[a-z0-9]{4,16}$/;
                if (!regex.test($('#phonenumber').val())) {
                    msg("错误", "用户名不正确", 1);
                    return false;
                }
		if ($('#password').val().length < 6) {
                    msg("错误", "密码不正确", 1);
                    return false;
                }


                console.log($('#phonenumber').val());
                console.log($('#password').val());
                $.ajax({
                    type: "POST",
                    url: '/index/login',
                    data: { phone: $('#phonenumber').val(), password: $('#password').val() },
                    dataType: "json",
                    success: function (result) {
                        console.log('result', result);
                        if (result.code == 1) {
                            window.location.href = "/index/user/index";
                           // msg("提示", result.info, 2, "/index/user/index");
                        } else {
                            alert(result.info);
                           // msg("提示", result.info, 1);
                        }
                    }
                });
            });
        });

        function changelang(lang) {
            if (lang == "list") {
                $('#langlist').fadeToggle(); return;
            } else {
                $.ajax({
                    type: 'get',
                    url: '/index/index/changelang?lang=' + lang,
                    dataType: "json",
                    success: function (res) {
                        console.log(lang);
                        window.localStorage.setItem('lang', lang);
                        var td = $('#lang' + lang).text();
                        $('#langset').text(td);
                        //$('#langlist').fadeToggle();
                        window.location.reload();

                    }

                })
            }
            
        }
        function msg(title, content, type, url) {
                $(".contents").html(content);
                if (type == 1) {
                    var btn = '<div class="confirm guanbi"  style="background-color:#33B497;" onclick="$(\'.tipMask\').hide();">确认</div>';
                }
                else {
                    var btn = '<div class="confirm guanbi"  style="background-color:#33B497;" onclick="window.location.href=\'' + url + '\'">确认</div>';
                }
                $("#msgBtn").html(btn);
                $(".tipMask").show();
            }
    </script></body></html>
                               

Whois info of domain

Domain Name: SDGDF.COM
Registry Domain ID: 2980721267_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: http://www.godaddy.com
Updated Date: 2025-05-05T16:49:49Z
Creation Date: 2025-05-05T15:20:47Z
Registry Expiry Date: 2026-05-05T15:20:47Z
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: NS1.DNSIP.COM
Name Server: NS2.DNSIP.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-14T22:17:23Z <<<
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