Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - sqth.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Cache-Control: max-age=864000
Content-Type: text/html
Last-Modified: Mon, 28 Apr 2025 07:34:30 GMT
Accept-Ranges: bytes
ETag: "c2eec6fafb8db1:0"
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
Set-Cookie: _d_id=89a0437a8bb19c7e710932e993e687; Path=/; HttpOnly; SameSite=Strict
Date: Sun, 25 May 2025 15:07:20 GMT
Content-Length: 4755

HTTP Kodu 200 OK

200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: sqth.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">
  <title>404 - 页面未找到</title>
  <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
  <meta http-equiv="Pragma" content="no-cache" />
  <meta http-equiv="Expires" content="0" />
  <style>
    /* 全局样式 */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body, html { height: 100%; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
    body {
      background: linear-gradient(135deg, #e3f2fd, #bbdefb);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .container {
      position: relative;
      background: rgba(255, 255, 255, 0.9);
      padding: 40px 30px;
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 100%;
      text-align: center;
    }
    body::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%; right: -50%; bottom: -50%;
      background: radial-gradient(circle at center, #90caf9, #64b5f6, #42a5f5);
      animation: rotateBackground 20s linear infinite;
      z-index: -1;
    }
    @keyframes rotateBackground {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    /* 404 数字动画效果 */
    .error-code {
      font-size: 96px;
      font-weight: 700;
      color: #0d47a1;
      margin-bottom: 20px;
    }
    .error-code span {
      display: inline-block;
      animation: shake 1.5s infinite, colorchange 3s infinite;
    }
    .error-code span:nth-child(2) { animation-delay: 0.3s, 0s; }
    .error-code span:nth-child(3) { animation-delay: 0.6s, 0.5s; }
    @keyframes shake {
      0%, 100% { transform: translateY(0); }
      25% { transform: translateY(-10px); }
      50% { transform: translateY(0); }
      75% { transform: translateY(10px); }
    }
    @keyframes colorchange {
      0% { color: #0d47a1; }
      50% { color: #1976d2; }
      100% { color: #0d47a1; }
    }
    .content h1 {
      font-size: 28px;
      color: #1565c0;
      margin-bottom: 16px;
    }
    .content p {
      font-size: 16px;
      color: #263238;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    /* 列表逐条显示动画 */
    #reasonList {
      margin: 0 auto 20px;
      padding-left: 30px;
      list-style-type: disc;
      text-align: left;
    }
    #reasonList li {
      opacity: 0;
      font-size: 14px;
      color: #37474f;
      margin-bottom: 8px;
      animation: fadeIn 0.6s forwards;
    }
    #reasonList li:nth-child(1) { animation-delay: 0.3s; }
    #reasonList li:nth-child(2) { animation-delay: 0.6s; }
    #reasonList li:nth-child(3) { animation-delay: 0.9s; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }
    code {
      background: #e0f2fe;
      color: #1e3a8a;
      padding: 2px 4px;
      border-radius: 4px;
      font-family: monospace;
    }
    .btn-refresh {
      display: block;
      width: 100%;
      padding: 14px 0;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      background: linear-gradient(135deg, #42a5f5, #1e88e5);
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin: 20px 0 10px;
    }
    .btn-refresh:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .footer {
      font-size: 12px;
      color: #607d8b;
      margin-top: 10px;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="error-code">
      <span>4</span><span>0</span><span>4</span>
    </div>
    <div class="content">
      <h1>⚠️ 您访问的站点出现错误</h1>
      <p>服务器无法识别您访问的域名,原因可能包括以下几种:</p>
      <ul id="reasonList">
        <li>主机控制面板未绑定域名(请确认 <code>www</code> 和 <code>@</code> 已分别绑定)。</li>
        <li>域名解析到了错误的地址,请检查您的 DNS 记录是否正确。</li>
        <li>服务器到期时间过长,当前域名已被解除绑定。</li>
      </ul>
      <p>如果您是网站管理员,请登录面板检查绑定情况。</p>
    </div>
    <button class="btn-refresh" onclick="location.reload()">刷新当前页面</button>
    <div class="footer">© 本页面由系统自动生成</div>
  </div>
</body>
</html>                               

Alan adının whois bilgisi

Domain Name: SQTH.COM
Registry Domain ID: 851895734_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2025-02-02T06:26:20Z
Creation Date: 2007-03-03T20:50:23Z
Registry Expiry Date: 2026-03-03T20:50:23Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS27.HICHINA.COM
Name Server: DNS28.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-25T15:07:10Z <<<
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