Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - cuqb.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Thu, 08 May 2025 18:50:28 GMT
Content-Type: text/html
Content-Length: 8757
Last-Modified: Thu, 01 May 2025 14:29:10 GMT
Connection: keep-alive
Keep-Alive: timeout=60
ETag: "68138536-2235"
Accept-Ranges: bytes

HTTP Code 200 OK

200 status 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: cuqb.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>
    <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>LA.init({id:"KbeNrLWEupzFMALg",ck:"KbeNrLWEupzFMALg"})</script>
    <!-- Font Awesome 图标库 -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --text-color: #333;
            --light-text: #7f8c8d;
            --bg-color: #f8f9fa;
            --card-bg: #ffffff;
            --border-radius: 10px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }
        
        /* 基础样式 */
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            background-color: var(--bg-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
            flex: 1;
        }
        
        /* 头部样式 */
        header {
            margin-bottom: 40px;
        }
        
        h1 {
            color: var(--secondary-color);
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        /* 主要内容 */
        .domain-name {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
            margin: 30px 0;
            word-break: break-all;
            padding: 15px 20px;
            background-color: rgba(52, 152, 219, 0.1);
            border-radius: var(--border-radius);
            display: inline-block;
            transition: var(--transition);
        }
        
        .domain-name:hover {
            background-color: rgba(52, 152, 219, 0.2);
        }
        
        .status {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 40px;
        }
        
        /* 联系信息 */
        .contact-info {
            background: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-top: 30px;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transition: var(--transition);
        }
        
        .contact-info:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .contact-label {
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            width: 100px;
            flex-shrink: 0;
        }
        
        .contact-label i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            color: var(--primary-color);
        }
        
        .contact-value {
            color: var(--primary-color);
            font-size: 1.1rem;
            word-break: break-all;
            flex-grow: 1;
        }
        
        .contact-value a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        
        .contact-value a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
        
        .contact-value a i {
            margin-right: 8px;
        }
        
        /* 页脚 */
        footer {
            margin-top: 50px;
            color: var(--light-text);
            font-size: 0.9rem;
            text-align: center;
            padding: 20px 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .domain-name {
                font-size: 1.5rem;
                padding: 12px 15px;
            }
            
            .contact-info {
                padding: 25px;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .contact-label {
                width: 100%;
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .domain-name {
                font-size: 1.3rem;
                padding: 10px 12px;
            }
            
            .status {
                font-size: 1rem;
            }
            
            .contact-info {
                padding: 20px;
            }
            
            .contact-label i {
                margin-right: 8px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1><i class="fas fa-parking"></i> 域名停靠</h1>
            <p>此域名当前未启用网站服务</p>
        </header>
        
        <div class="domain-name" id="domain-display">
            <i class="fas fa-globe"></i> <span id="domain-text"></span>
        </div>
        <div class="status"><i class="fas fa-info-circle"></i> 此域名可能出售或出租</div>
        
        <div class="contact-info">
            <h2><i class="fas fa-address-card"></i> 联系方式</h2>
            <p>如果您想购买或租赁此域名,请通过以下方式与我们联系:</p>
            
            <ul class="contact-list">
                <li class="contact-item">
                    <span class="contact-label"><i class="fas fa-user"></i> 联系人</span>
                    <span class="contact-value">王先生</span>
                </li>
                <li class="contact-item">
                    <span class="contact-label"><i class="fas fa-envelope"></i> 电子邮箱</span>
                    <span class="contact-value">
                        <a href="mailto:[email protected]"><i class="fas fa-paper-plane"></i> [email protected]</a>
                    </span>
                </li>
                <li class="contact-item">
                    <span class="contact-label"><i class="fab fa-weixin"></i> 微信</span>
                    <span class="contact-value">
                        <i class="fas fa-comment-dots"></i> bq1060
                    </span>
                </li>
                <li class="contact-item">
                    <span class="contact-label"><i class="fab fa-qq"></i> QQ</span>
                    <span class="contact-value">
                        <i class="fas fa-comment"></i> 183737666
                    </span>
                </li>
            </ul>
        </div>
        
        <footer>
            <p><i class="far fa-copyright"></i> <span id="current-year"></span> <span id="footer-domain"></span>. 保留所有权利.</p>
        </footer>
    </div>

    <script>
        // 自动显示当前域名
        document.addEventListener('DOMContentLoaded', function() {
            const currentDomain = window.location.hostname;
            const domainText = document.getElementById('domain-text');
            const footerDomain = document.getElementById('footer-domain');
            const pageTitle = document.getElementById('current-domain');
            
            // 显示当前域名
            domainText.textContent = currentDomain;
            footerDomain.textContent = currentDomain;
            pageTitle.textContent = currentDomain;
            
            // 更新年份
            document.getElementById('current-year').textContent = new Date().getFullYear();
        });
    </script>
</body>
</html>                               

Whois info of domain

Domain Name: CUQB.COM
Registry Domain ID: 1815915057_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dnspod.cn
Registrar URL: http://www.dnspod.cn
Updated Date: 2024-12-09T11:33:13Z
Creation Date: 2013-07-18T10:00:04Z
Registry Expiry Date: 2030-07-18T10:00:04Z
Registrar: DNSPod, Inc.
Registrar IANA ID: 1697
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.4009100100
Domain Status: ok https://icann.org/epp#ok
Name Server: NINETEEN.DNSPOD.NET
Name Server: SHANDY.DNSPOD.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-08T18:50:13Z <<<
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