301 http status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 http status code 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.
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: keq.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta http-equiv="X-UA-Compatible" content="ie=edge"/> <title>This domain is possible for sale.</title> <link href="/styles/offline/css/style.css" rel="stylesheet"/> </head> <body> <div> <section class="offline"> <div class="container"><a class="logo" href="#"><img src="/styles/offline/img/logo.png" alt=""/></a></div> <div class="container-flex"> <div class="content-offline"> <picture> <source type="image/webp" srcset="/styles/offline/img/bgi.webp"/><img src="/styles/offline/img/bgi.png" alt=""/> </picture> <h1 class="content-offline__title">This domain may be for sale.</h1> <p class="content-offline__text"> There is a temporary outage on this page which will be solved shortly. </p> <a class="content-offline__submit" href="#" onclick="window.location.reload(true); return false;">Try loading again</a> </div> </div> </section> </div> <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> <script src="/styles/offline/js/main.js"></script> </body> </html>