Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - ldd3a.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 06 May 2025 16:22:44 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Tue, 06 May 2025 17:22:44 GMT
Location: https://ldd3a.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=KS9kOo0HcFL6Nr0XFjR3uHS5MaBkXhDwcn2wIvjBgy99zONGrCePn45T6Bjz6K%2BHN20JQMDZ%2B%2FMHKkQXbbdMZaj8lwIHxz06OCBjcC78hBfOujv1IBftWLtqdn093tOdcjhGj9IQDX4%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93b9d171ece7363f-FRA
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=24121&min_rtt=24121&rtt_var=12060&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=165&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 301 Moved Permanently

301 response code 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://ldd3a.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Tue, 06 May 2025 16:22:45 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
Last-Modified: Wed, 18 Sep 2024 11:37:07 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EXN%2FcWzdVDA%2FqMZyYIKhJoYwowBjx4IJSEN5nEyDJiBZ4X7VsjIzvyp3FJ1rEJ5XMr6a%2BIu5hTBO0CxckA7k10WU9wfSoVircZhj%2BsvPw9AFjTujyJITzOjjKKWtqSlnXdo4vBPL2%2FI%3D"}]}
Accept-Ranges: bytes
Cf-Cache-Status: DYNAMIC
CF-RAY: 93b9d1728e1218d9-FRA
alt-svc: h3=":443"; ma=86400

HTTP Code 200 OK

200 response code 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: ldd3a.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 http-equiv="X-UA-Compatible" content="IE=edge">
    <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
    <meta name="viewport"
          content="user-scalable=0, width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
    <link id="appIcon" rel="apple-touch-icon" sizes="114x114"/>
    <title></title>
    <style>
        .ceng-hidden{
            display: none;
        }
        .ceng-show{

        }
    </style>
</head>

<body style="background-color: black;">
    <div id="ceng" class="ceng-hidden" >
        <img  src="nouse.png" style="float: right;width: 75%" />
    </div>
</body>
<script>
    //设置桌面图标
    let appIcon = document.getElementById('appIcon');
    appIcon.href = window.location.protocol + "//" + window.location.host + '/upload/logo.png';

    // 判断是移动端还是PC端
    function isPC() {
        if ((navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
        ))) {
            return false;
        } else {
            return true;
        }
    }

    function isWechat() {
        if (navigator.userAgent.match(/(micromessenger|Micromessenger|MicroMessenger)/i)) {
            return true;
        }
        return false;
    }

    function getQueryString(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;
    }

    if (isWechat()) {
        document.getElementById("ceng").className='ceng-show'
    } else {
        if (isPC()) {
            // PC端地址
            if (window.location.href.indexOf('?code=') > -1) {
                // 分享链接过来的,跳去注册页面
                window.location.replace('./pc/index.html#/register?code=' + getQueryString('code'));
            } else {
                window.location.replace('./pc/index.html');
            }
        } else {
            // 手机端地址
            if (window.location.href.indexOf('?code=') > -1) {
                // 分享链接过来的,跳去注册页面
                window.location.replace('./h5/index.html#/register?code=' + getQueryString('code'));
            } else {
                window.location.replace('./h5/index.html');
            }
            // var newWindow = window.open('http://www.example.com', '_blank');
            // newWindow.document.head.insertAdjacentHTML('beforeend', '<meta name="apple-mobile-web-app-capable" content="yes">');
        }
    }

</script>

</html>                               

Whois info of domain

Domain Name: LDD3A.COM
Registry Domain ID: 2933889811_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gname.com
Registrar URL: http://www.gname.com
Updated Date: 2024-11-13T15:15:31Z
Creation Date: 2024-11-13T14:39:13Z
Registry Expiry Date: 2025-11-13T14:39:13Z
Registrar: Gname.com Pte. Ltd.
Registrar IANA ID: 1923
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +65.65189986
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: IAN.NS.CLOUDFLARE.COM
Name Server: OLGA.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-06T16:22:38Z <<<
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