Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - letwp.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: keep-alive
Content-Length: 162
Server: GitHub.com
Content-Type: text/html
Location: https://letwp.com/
X-GitHub-Request-Id: 5EAF:147997:76DD67:77DFE4:681A593E
Accept-Ranges: bytes
Age: 0
Date: Tue, 06 May 2025 18:47:26 GMT
Via: 1.1 varnish
X-Served-By: cache-hel1410022-HEL
X-Cache: MISS
X-Cache-Hits: 0
X-Timer: S1746557246.423688,VS0,VE127
Vary: Accept-Encoding
X-Fastly-Request-ID: dfb303fef1579b3f3383c5d4e4aedd81c3e8817a

HTTP Code 301 Moved Permanently

301 response code 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://letwp.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Connection: keep-alive
Content-Length: 3585
Server: GitHub.com
Content-Type: text/html; charset=utf-8
Last-Modified: Wed, 12 Mar 2025 15:10:37 GMT
Access-Control-Allow-Origin: *
Strict-Transport-Security: max-age=31556952
ETag: "67d1a3ed-e01"
expires: Tue, 06 May 2025 18:57:26 GMT
Cache-Control: max-age=600
x-proxy-cache: MISS
X-GitHub-Request-Id: A46A:13A468:76854D:77873C:681A593E
Accept-Ranges: bytes
Age: 0
Date: Tue, 06 May 2025 18:47:26 GMT
Via: 1.1 varnish
X-Served-By: cache-hel1410026-HEL
X-Cache: MISS
X-Cache-Hits: 0
X-Timer: S1746557247.572060,VS0,VE153
Vary: Accept-Encoding
X-Fastly-Request-ID: 0061ea71143eac0ce2dfc8936798694e33e407c9

HTTP Code 200 OK

200 response 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.

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: letwp.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">
    <title>LetWP - WordPress Experts | Themes | Plugins | Services</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <!-- Cloudflare Analytics -->
    <script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "YOUR_CLOUDFLARE_TOKEN"}'></script>
</head>
<body class="bg-gradient-to-r from-blue-50 to-indigo-50 min-h-screen">
    <!-- Header Section -->
    <header class="container mx-auto px-4 py-6">
        <nav class="flex justify-between items-center">
            <div class="text-2xl font-bold text-blue-600">LetWP</div>
            <div class="space-x-6">
                <a href="#services" class="text-gray-600 hover:text-blue-600">Services</a>
                <a href="#blog" class="text-gray-600 hover:text-blue-600">Blog</a>
                <a href="#contact" class="text-gray-600 hover:text-blue-600">Contact</a>
            </div>
        </nav>
    </header>

    <!-- Hero Section -->
    <main class="container mx-auto px-4 py-20">
        <div class="text-center max-w-2xl mx-auto">
            <h1 class="text-5xl font-bold text-gray-800 mb-6">
                WordPress Development Experts
            </h1>
            <p class="text-xl text-gray-600 mb-8">
                Crafting premium WordPress themes, powerful plugins, and providing expert services to elevate your web presence.
            </p>
            <button onclick="scrollToContact()" class="bg-blue-600 text-white px-8 py-3 rounded-lg hover:bg-blue-700 transition duration-300 transform hover:scale-105">
                Start Your Project
            </button>
        </div>
    </main>

    <!-- Features Section -->
    <section class="bg-white py-20">
        <div class="container mx-auto px-4 grid md:grid-cols-3 gap-8">
            <div class="text-center p-6">
                <div class="text-blue-600 text-4xl mb-4">🎨</div>
                <h3 class="text-xl font-bold mb-2">Custom Themes</h3>
                <p class="text-gray-600">Pixel-perfect, responsive WordPress themes tailored to your brand</p>
            </div>
            <div class="text-center p-6">
                <div class="text-blue-600 text-4xl mb-4">⚙️</div>
                <h3 class="text-xl font-bold mb-2">Premium Plugins</h3>
                <p class="text-gray-600">Extend WordPress functionality with our secure, optimized plugins</p>
            </div>
            <div class="text-center p-6">
                <div class="text-blue-600 text-4xl mb-4">🛠️</div>
                <h3 class="text-xl font-bold mb-2">Expert Services</h3>
                <p class="text-gray-600">WordPress optimization, maintenance, and custom development</p>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="container mx-auto px-4 text-center">
            <p class="mb-4">© 2023 LetWP. All rights reserved.</p>
            <div class="space-x-4">
                <a href="#" class="hover:text-blue-400">Privacy Policy</a>
                <a href="#" class="hover:text-blue-400">Terms of Service</a>
                <a href="#" class="hover:text-blue-400">Contact</a>
            </div>
        </div>
    </footer>

    <script>
        function scrollToContact() {
            document.querySelector('#contact').scrollIntoView({
                behavior: 'smooth'
            });
        }
    </script>
</body>
</html>                               

Whois info of domain

Domain Name: LETWP.COM
Registry Domain ID: 2505331813_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-03-12T14:57:06Z
Creation Date: 2020-03-20T11:36:47Z
Registry Expiry Date: 2026-03-20T11:36:47Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: TIA.NS.CLOUDFLARE.COM
Name Server: ZAC.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-06T18:47:07Z <<<
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