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 - comhh.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 24 May 2025 08:49:36 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
last-modified: Sat, 24 May 2025 01:44:01 GMT
vary: Accept-Encoding
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=cTWLnGldXbQibwtJDvbitRUME9TvaNJd0E7akt2Gzs%2BFiZFEiP0SbKCY7HOyzT%2Fj%2BpA2gfnnKvyKaeIVdHONtHTb3RSAV%2Bk7Hpuib0vBJ5gVt4nVElOmoclSYq2mJoqNOYsB3NjtuFo%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 944b8a6388582d6b-ARN
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=7616&min_rtt=7616&rtt_var=3808&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 Kodu 200 OK

200 durum kodu, 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: comhh.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, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
	<link rel="icon" href="favicon.svg" type="image/svg+xml">
    <link rel="apple-touch-icon" href="favicon.svg">
    <title>COMHH🍃</title>
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <script src="dtbj.js"></script>
    <style>
        @font-face {
            font-family: 'Pacifico';
            src: url('dn.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        .task-icon-wrapper {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            z-index: 1000;
        }

        .task-icon {
            font-size: 32px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }

        .task-icon-wrapper:hover .task-icon {
            transform: scale(1.1);
        }

        .name {
            font-family: 'Pacifico', cursive;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28, #ff4d4d);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: gradient 3s linear infinite;
            position: relative;
            display: inline-block;
        }

        @keyframes gradient {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        .name::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            color: rgba(255,255,255,0.3);
            z-index: -1;
            filter: blur(5px);
            font-family: 'Pacifico', cursive;
        }

        /* 头像容器样式(圆形触发区域) */
        .avatar-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            display: inline-block;
        }

        .avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            transition: transform 1s ease-in-out;
            transform: rotate(0deg);
        }
    </style>
</head>
<body>
    <div id="box" style="position:fixed;
                        top:0;
                        left:0;
                        width:100vw;
                        height:100vh;
                        z-index:-1;
                        opacity:0;
                        transition: opacity 1s ease;
                        background-color: transparent;">
    </div>

    <div class="task-icon-wrapper" id="taskIconWrapper">
        <i class="fas fa-tasks-alt task-icon" id="taskIcon"></i>
    </div>

    <div class="container">
        <header>
            <div class="avatar-container" id="avatarContainer">
                <img src="favicon.svg" alt="头像" class="avatar" id="avatarImg">
            </div>
            <h1 class="glow">Hi, 我是 <span class="name" data-text="comhh.com">comhh.com</span></h1>
            <p class="typed-text" id="typed-text"></p>
        </header>

        <main>
            <section class="links">
                <a href="https://blog.comhh.com" class="link-card" target="_blank" rel="noopener">
                    <i class="fas fa-blog"></i>
                    <span>博客</span>
                </a>
                <a href="https://wwww.hidns.vip" class="link-card" target="_blank" rel="noopener">
                    <i class="fas fa-address-book"></i>
                    <span>笔记</span>
                </a>
                <a href="https://tv.itxgo.com" class="link-card" target="_blank" rel="noopener">
                    <i class="fas fa-clapperboard"></i>
                    <span>影视</span>
                </a>
                <a href="https://ssh.232355.xyz" class="link-card" target="_blank" rel="noopener">
                    <i class="fas fa-code"></i>
                    <span>SSH</span>
                </a>
                <a href="https://itxgo.com" class="link-card" target="_blank" rel="noopener">
                    <i class="fas fa-house-user"></i>
                    <span>其他</span>
                </a>
                <a href="#" class="link-card">
                    <i class="fas fa-address-card"></i>
                    <span>关于</span>
                </a>
            </section>

            <section class="social-links">
                <a href="https://github.com/xpfcom" class="social-icon"><i class="fab fa-github"></i></a>
                <a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
                <a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
                <a href="#" class="social-icon"><i class="fab fa-linkedin"></i></a>
                <a href="#" class="social-icon"><i class="fab fa-weixin"></i></a>
            </section>
        </main>

        <footer>
            <p>© 2025 COMHH.COM. 保留所有权利.</p>
        </footer>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            let colorbg = new Color4Bg.AbstractShapeBg({
                dom: "box",
                colors: ["#86DFE9","#A4EFF4","#FDFFF0","#D6F2C7","#BDEDAD","#AAE0A6"],
                loop: true
            });

            const box = document.getElementById("box");
            setTimeout(() => {
                box.style.opacity = "0.6";
            }, 100);

            const taskIconWrapper = document.getElementById('taskIconWrapper');
            const taskIcon = document.getElementById('taskIcon');

            taskIconWrapper.addEventListener('mouseenter', () => {
                taskIconWrapper.style.opacity = '1';
            });

            taskIconWrapper.addEventListener('mouseleave', () => {
                taskIconWrapper.style.opacity = '0';
            });

            taskIcon.addEventListener('click', () => {
                window.open('https://1panel.comhh.com/xpfcom', '_blank');
            });

            // 改进后的头像旋转交互逻辑
            const avatar = document.getElementById('avatarImg');
            const avatarContainer = document.getElementById('avatarContainer');
            let rotationAnimation;
            let currentRotation = 0;
            let isRotating = false;
            let startTime;
            let duration = 100; // 动画持续时间(ms)

            function getCurrentRotation() {
                const style = window.getComputedStyle(avatar);
                const matrix = new WebKitCSSMatrix(style.transform);
                return Math.round(Math.atan2(matrix.b, matrix.a) * (180/Math.PI));
            }

            function rotateTo(targetAngle, callback) {
                if (rotationAnimation) {
                    cancelAnimationFrame(rotationAnimation);
                }
                
                isRotating = true;
                currentRotation = getCurrentRotation();
                startTime = null;
                
                function animate(timestamp) {
                    if (!startTime) startTime = timestamp;
                    const elapsed = timestamp - startTime;
                    const progress = Math.min(elapsed / duration, 1);
                    
                    // 计算当前角度
                    const angle = currentRotation + (targetAngle - currentRotation) * progress;
                    avatar.style.transform = `rotate(${angle}deg)`;
                    
                    if (progress < 1) {
                        rotationAnimation = requestAnimationFrame(animate);
                    } else {
                        isRotating = false;
                        currentRotation = targetAngle;
                        if (callback) callback();
                    }
                }
                
                rotationAnimation = requestAnimationFrame(animate);
            }

            avatarContainer.addEventListener('mouseenter', () => {
                if (isRotating) {
                    // 如果正在旋转,先停止当前动画
                    cancelAnimationFrame(rotationAnimation);
                    isRotating = false;
                }
                rotateTo(-360);
            });

            avatarContainer.addEventListener('mouseleave', () => {
                if (isRotating) {
                    // 如果正在旋转,先停止当前动画
                    cancelAnimationFrame(rotationAnimation);
                    isRotating = false;
                }
                rotateTo(0);
            });
        });
    </script>

    <script src="script.js"></script>
</body>
</html>                               

Alan adının whois bilgisi

Domain Name: COMHH.COM
Registry Domain ID: 2975881030_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.spaceship.com
Registrar URL: http://www.spaceship.com
Updated Date: 2025-04-17T14:43:15Z
Creation Date: 2025-04-17T14:29:13Z
Registry Expiry Date: 2026-04-17T14:29:13Z
Registrar: Spaceship, Inc.
Registrar IANA ID: 3862
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.9854014545
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: MIKI.NS.CLOUDFLARE.COM
Name Server: OSMAR.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-24T08:49:28Z <<<
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