Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - gdk9.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Fri, 16 May 2025 04:24:20 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Fri, 16 May 2025 05:24:20 GMT
Location: https://mkk82.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=KHg4hTyyNXbs%2BTSwzZPohk5Qw%2BxS2RPq6jnOqXhkp3RSlLcBn200kU%2FPikIm5diVRUDxRk%2FxhiJIQiY8GakDGcZY1D6tFrq0gHL86dNHZvw31d9STQosYCuNlTrq1VzN9Q4feoG62w%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 94081ad70d7e09a9-ARN
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=7460&min_rtt=7460&rtt_var=3730&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=164&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 301 Moved Permanently

301 Moved Permanently 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://mkk82.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Fri, 16 May 2025 04:24:21 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: cloudflare
Last-Modified: Tue, 03 Sep 2024 02:05:54 GMT
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=d11ehyKoQS75VnwibBI8gv4SiG1sm9OJ%2F%2FgJ7KmoKBfNfr3q75MaH%2BzfztFGPaDYegvRJiooIy1zE4lF6RNDUwuE5d7mikF4G0QxupJgO6iOJHzklubIdOAQZlJcDEqCXWDUrsoU82c%3D"}]}
Accept-Ranges: bytes
Cf-Cache-Status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 94081ad7b944f430-ARN
alt-svc: h3=":443"; ma=86400

HTTP Code 200 OK

200 OK 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: gdk9.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<?php
    $client_ip = $_SERVER['REMOTE_ADDR'];
    $return_value = array();

    $today = date("Y-m-d H:i:s");
    $return_value["today"] = $today;

    if( in_array($client_ip, array("112.175.184.101", "112.175.184.102")) ){
        $cmd = "cat /proc/loadavg;";
        exec($cmd, $output, $result_code);
        $return_value["load_average"] = $output[0];
    }

    header('ret_val: ' . json_encode($return_value));
?>

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>호스팅은 닷홈</title>
    <!-- Bootstrap CSS -->
    <link href="/static/css/bootstrap.min.css" rel="stylesheet">
    <link href="/static/css/healthcheck.css" rel="stylesheet">
</head>
<body>
    <!-- Navbar with only a brand logo -->
    <nav class="navbar navbar-expand-lg">
        <a class="navbar-brand" href="https://www.dothome.co.kr/" target="_blank"><img src="/images/dothome.png"  style="max-width:140px;" alt="닷홈 로고" /></a>
    </nav>

    <!-- Error container and message -->
    <div class="container error-container">
        <div class="row">
            <div class="col-12">
                <!-- Replace 'path/to/your/image.png' with the actual path to your image -->
                <img src="/images/welcome_img.png" class="welcome-image" alt="Welcome Image">
                <div class="error-message" style="margin-top:20px;">무료로 시작하는 웹호스팅</div>
                <div class="error-message">최고의 호스팅 경험을 제공합니다.</div>
                <p class="small_text" style="margin:10px 0 2rem;">무료호스팅에서 서버호스팅, 클라우드까지</p>
                <a class="btn btn-secondary"  onclick="window.history.back(); return false;" >이전 페이지로 이동</a>
                <a class="btn btn-primary" href="https://www.dothome.co.kr/">닷홈으로 이동</a>
            </div>
        </div>
    </div>
    
    <!-- Button section -->
    <div class="container button-section">
        <!-- Repeat this block for each button -->
        <a href="https://www.dothome.co.kr/domain/index.php" target="_blank" class="row align-items-center">
            <div class="col-auto">
                <div class="icon-wrapper">
                    <!-- Replace with your image path -->
                    <img src="/images/sevice_domain.png" alt="domain_Icon">
                </div>
            </div>
            <div class="col">
                <div class="button-title">도메인</div>
                <div class="button-description">신규 등록 할인쿠폰 제공, 최대 할인가! 13,500원</div>
            </div>
            <div class="col-auto">
                <div class="arrow-icon"><img src="/images/arrow.png"></div>
            </div>
        </a>
        <hr>
        <a href="https://www.dothome.co.kr/web/product/price.php" target="_blank" class="row align-items-center">
            <div class="col-auto">
                <div class="icon-wrapper">
                    <!-- Replace with your image path -->
                    <img src="/images/sevice_hosting.png" alt="hosting_Icon">
                </div>
            </div>
            <div class="col">
                <div class="button-title">웹호스팅</div>
                <div class="button-description">다양한 PHP버전 및 워드프레스, 그누보드 자동설치 지원</div>
            </div>
            <div class="col-auto">
                <div class="arrow-icon"><img src="/images/arrow.png"></div>
            </div>
        </a>
        <hr>
        <a href="https://www.dothome.co.kr/homepage/free_builder_index.php" target="_blank" class="row align-items-center">
            <div class="col-auto">
                <div class="icon-wrapper">
                    <!-- Replace with your image path -->
                    <img src="/images/sevice_free.png" alt="free_Icon">
                </div>
            </div>
            <div class="col">
                <div class="button-title">무료홈페이지</div>
                <div class="button-description">코딩 없이 클릭만으로 나만의 홈페이지 완성!</div>
            </div>
            <div class="col-auto">
                <div class="arrow-icon"><img src="/images/arrow.png"></div>
            </div>
        </a>
        <!-- Repeat end -->
    </div>

    <!-- Footer -->
    <footer>
        <p>Copyrightⓒdothome Corp. All Rights Reserved.</p>
    </footer>

    <!-- Bootstrap JS, Popper.js, and jQuery -->
    <script src="/static/js/bootstrap.min.js"></script>
</body>
</html>
                               

Whois info of domain

Domain Name: GDK9.COM
Registry Domain ID: 2906314755_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.hosting.kr
Registrar URL: http://HOSTING.KR
Updated Date: 2024-08-08T05:09:48Z
Creation Date: 2024-08-08T05:09:47Z
Registry Expiry Date: 2025-08-08T05:09:47Z
Registrar: Megazone Corp., dba HOSTING.KR
Registrar IANA ID: 1489
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +82.216447378
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: RACHEL.NS.CLOUDFLARE.COM
Name Server: YOXALL.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-16T04:24:03Z <<<
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