Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
404 Not Found - kodti.com
HTTP Status: 404
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Thu, 15 May 2025 19:24:58 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive

HTTP Code 404 Not Found

404 http status code means that the requested page or resource was not found on the server.

When is Code 404 used?

  • When a page is deleted
  • When the URL is incorrect
  • When there are navigation issues on the website

What does Code 404 mean for the user?

The user sees an error message, and search engines may remove the page from their index.

GET / HTTP/1.1
Host: kodti.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
  <head>
    <title>404 Not Found</title>

    <link href="https://fonts.googleapis.com/css?family=Encode+Sans+Semi+Condensed:100,200,300,400" rel="stylesheet">

    <style>
      /**/
      :root {
        --main-color: #eaeaea;
        --stroke-color: black;
        
      }
      /**/
      body {
        background: var(--main-color);
      }
      h1 {
        margin: 100px auto 0 auto;
        color: var(--stroke-color);
        font-family: 'Encode Sans Semi Condensed', Verdana, sans-serif;
        font-size: 10rem; line-height: 10rem;
        font-weight: 200;
        text-align: center;
      }
      h2 {
        margin: 20px auto 30px auto;
        font-family: 'Encode Sans Semi Condensed', Verdana, sans-serif;
        font-size: 1.5rem;
        font-weight: 200;
        text-align: center;
      }
      h1, h2 {
        -webkit-transition: opacity 0.5s linear, margin-top 0.5s linear; /* Safari */
        transition: opacity 0.5s linear, margin-top 0.5s linear;
      }
      .loading h1, .loading h2 {
        margin-top: 0px;
        opacity: 0;  
      }
      .gears {
        position: relative;
        margin: 0 auto;
        width: auto; height: 0;
      }
      .gear {
        position: relative;
        z-index: 0;
        width: 120px; height: 120px;
        margin: 0 auto;
        border-radius: 50%;
        background: var(--stroke-color);
      }
      .gear:before{
        position: absolute; left: 5px; top: 5px; right: 5px; bottom: 5px;
        z-index: 2;
        content: "";
        border-radius: 50%;
        background: var(--main-color);
      }
      .gear:after {
        position: absolute; left: 25px; top: 25px;
        z-index: 3;
        content: "";
        width: 70px; height: 70px;
        border-radius: 50%;
        border: 5px solid var(--stroke-color);
        box-sizing: border-box;
        background: var(--main-color);
      }
      .gear.one {
        left: -130px;
      }
      .gear.two {
        top: -75px;
      }
      .gear.three {
        top: -235px;
        left: 130px;
      }
      .gear .bar {
        position: absolute; left: -15px; top: 50%;
        z-index: 0;
        width: 150px; height: 30px;
        margin-top: -15px;
        border-radius: 5px;
        background: var(--stroke-color);
      }
      .gear .bar:before {
        position: absolute; left: 5px; top: 5px; right: 5px; bottom: 5px;
        z-index: 1;
        content: "";
        border-radius: 2px;
        background: var(--main-color);
      }
      .gear .bar:nth-child(2) {
        transform: rotate(60deg);
        -webkit-transform: rotate(60deg);
      }
      .gear .bar:nth-child(3) {
        transform: rotate(120deg);
        -webkit-transform: rotate(120deg);
      }
      @-webkit-keyframes clockwise {
        0% { -webkit-transform: rotate(0deg);}
        100% { -webkit-transform: rotate(360deg);}
      }
      @-webkit-keyframes anticlockwise {
        0% { -webkit-transform: rotate(360deg);}
        100% { -webkit-transform: rotate(0deg);}
      }
      @-webkit-keyframes clockwiseError {
        0% { -webkit-transform: rotate(0deg);}
        20% { -webkit-transform: rotate(30deg);}
        40% { -webkit-transform: rotate(25deg);}
        60% { -webkit-transform: rotate(30deg);}
        100% { -webkit-transform: rotate(0deg);}
      }
      @-webkit-keyframes anticlockwiseErrorStop {
        0% { -webkit-transform: rotate(0deg);}
        20% { -webkit-transform: rotate(-30deg);}
        60% { -webkit-transform: rotate(-30deg);}
        100% { -webkit-transform: rotate(0deg);}
      }
      @-webkit-keyframes anticlockwiseError {
        0% { -webkit-transform: rotate(0deg);}
        20% { -webkit-transform: rotate(-30deg);}
        40% { -webkit-transform: rotate(-25deg);}
        60% { -webkit-transform: rotate(-30deg);}
        100% { -webkit-transform: rotate(0deg);}
      }
      .gear.one {
        -webkit-animation: anticlockwiseErrorStop 2s linear infinite;
      }
      .gear.two {
        -webkit-animation: anticlockwiseError 2s linear infinite;
      }
      .gear.three {
        -webkit-animation: clockwiseError 2s linear infinite;
      }
      .loading .gear.one, .loading .gear.three {
        -webkit-animation: clockwise 3s linear infinite;
      }
      .loading .gear.two {
        -webkit-animation: anticlockwise 3s linear infinite;
      }
    </style>
  </head>
  <body class="loading">
    <h1>404</h1>
    <h2>Not Found</h2>
    <div class="gears">
      <div class="gear one">
        <div class="bar"></div>
        <div class="bar"></div>
        <div class="bar"></div>
      </div>
      <div class="gear two">
        <div class="bar"></div>
        <div class="bar"></div>
        <div class="bar"></div>
      </div>
      <div class="gear three">
        <div class="bar"></div>
        <div class="bar"></div>
        <div class="bar"></div>
      </div>
    </div>
    <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
    <script type="text/javascript">
      $(function() {
        setTimeout(function(){
          $('body').removeClass('loading');
        }, 1000);
      });
    </script>
  </body>
</html>

                               

Whois info of domain

Domain Name: KODTI.COM
Registry Domain ID: 2902525213_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.discount-domain.com
Registrar URL: http://gmo.jp
Updated Date: 2024-07-25T23:39:30Z
Creation Date: 2024-07-25T23:39:27Z
Registry Expiry Date: 2025-07-25T23:39:27Z
Registrar: GMO Internet Group, Inc. d/b/a Onamae.com
Registrar IANA ID: 49
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +81.337709199
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.DOMAINESIA.NET
Name Server: NS2.DOMAINESIA.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-15T19:24:49Z <<<
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