Notice: Trying to access array offset on value of type null in /var/www/colorilla/data/www/httpstatuscodes.info/users/boot.php on line 88
iooph sunucusunun yanıtını ve yönlendirmelerini kontrol edin

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 - iooph.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Server: nginx
Date: Thu, 22 May 2025 05:25:45 GMT
Content-Type: text/html
Last-Modified: Mon, 21 Apr 2025 00:47:33 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
ETag: "680595a5-1c31"
Strict-Transport-Security: max-age=31536000

HTTP Kodu 200 OK

http durum kodu 200, 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: iooph.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
<!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>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        .logo a {
            text-decoration: none;
            color: inherit;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 30px;
        }
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-menu a:hover {
            color: #007bff;
        }
        .hero {
            background-color: #007bff;
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }
        .hero-content {
            text-align: center;
        }
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        main {
            padding: 40px 0;
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        .article-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-5px);
        }
        .article-image {
            height: 200px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #868e96;
        }
        .article-content {
            padding: 20px;
        }
        .article-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #212529;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .article-excerpt {
            color: #495057;
            margin-bottom: 15px;
        }
        .read-more {
            display: inline-block;
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background-color: #343a40;
            color: #f8f9fa;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #fff;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        .icp-license {
            margin-top: 10px;
            color: #868e96;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            .nav-menu {
                margin-top: 15px;
                justify-content: center;
            }
            .nav-menu li {
                margin: 0 10px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .articles-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
    </style>
</head>
<body>
    <header>
        <div class="container">
            <div class="header-content">
                <div class="logo">
                    <a href="/">我的博客</a>
                </div>
            </div>
        </div>
    </header>

    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <h1>欢迎来到我的博客</h1>
                <p>这里记录我的思考、学习和生活,分享有价值的内容与经验</p>
            </div>
        </div>
    </section>

    <main class="container">
        <div class="empty-content-area">
            <!-- 这里是空白区域,只设置高度 -->
        </div>
    </main>
    
    <style>
        .empty-content-area {
            min-height: 600px; /* 设置最小高度 */
            padding: 30px 0;
            background-color: #f8f9fa;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        @media (max-width: 768px) {
            .empty-content-area {
                min-height: 400px;
            }
        }
    </style>

    <footer>
        <div class="container">
            <div class="footer-content">
                <div class="footer-section">
                    <h3>关于博客</h3>
                    <p>这是一个分享技术、思考和生活的个人博客,希望能为读者带来价值和启发。</p>
                </div>
                
                <div class="footer-section">
                    <h3>联系方式</h3>
                    <ul class="footer-links">
                        <li><a href="admin@iooph.com">Email: admin@iooph.com</a></li>
                    </ul>
                </div>
            </div>
            <div class="footer-bottom">
                <p>&copy; 2025 我的博客 - 保留所有权利</p>
                <p class="icp-license">粤ICP备2024255325号</p>
            </div>
        </div>
    </footer>
</body>
</html>                               

Alan adının whois bilgisi

Domain Name: IOOPH.COM
Registry Domain ID: 2881738973_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2025-04-16T02:12:34Z
Creation Date: 2024-05-16T03:36:08Z
Registry Expiry Date: 2026-05-16T03:36:08Z
Registrar: Alibaba Cloud Computing Ltd. d/b/a HiChina (www.net.cn)
Registrar IANA ID: 1599
Registrar Abuse Contact Email: DomainAbuse@service.aliyun.com
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS19.HICHINA.COM
Name Server: DNS20.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-22T05:25:34Z <<<
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