Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - bloty.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
keep-alive: timeout=5, max=100
content-type: text/html
content-length: 795
date: Mon, 19 May 2025 21:49:31 GMT
server: LiteSpeed
location: https://bloty.com/
x-turbo-charged-by: LiteSpeed

HTTP Code 301 Moved Permanently

301 status 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://bloty.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
keep-alive: timeout=5, max=100
x-powered-by: PHP/8.1.32
set-cookie: PHPSESSID=kbp6sl1lkk9i0ra8cb34k4el0s; path=/; secure
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
content-type: text/html; charset=UTF-8
content-length: 8201
date: Mon, 19 May 2025 21:49:32 GMT
server: LiteSpeed
x-turbo-charged-by: LiteSpeed

HTTP Code 200 OK

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

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: bloty.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>Bloty - Bloty</title>
	
	<!-- Favicon -->
	<link rel="icon" type="image/x-icon" href="/favicon.ico">
	<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
	<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
	<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
	<link rel="manifest" href="/site.webmanifest">

    <!-- Google AdSense -->
    <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6340624596268116" crossorigin="anonymous"></script>
    
    <!-- Tailwind CSS -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
    
    <!-- Architects Daughter Font -->
    <link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap" rel="stylesheet">
  
    <!-- Font import for genre buttons -->
    <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500&display=swap" rel="stylesheet">

    <!--Umami tracking-->
    <script defer src="https://cloud.umami.is/script.js" data-website-id="f166ff2a-afd3-4b0f-967e-0b252c393e1f"></script>

    <style>
        .story-text {
           font-family: 'Space Grotesk', sans-serif;
        }
        body {
            overflow-x: hidden;
        }
        .content-container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 768px) {
            .content-container {
                width: 90%;
            }
        }
        .hand-drawn {
            border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
            border: solid 3px #333;
        }
        .admin-link {
            background: linear-gradient(45deg, #FF6B6B 10%, #FF8E53 90%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 600;
            position: relative;
        }
        .admin-link:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(45deg, #FF6B6B 10%, #FF8E53 90%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .admin-link:hover:after {
            transform: scaleX(1);
        }
    </style>
</head>
<body class="min-h-screen bg-gray-50">
    <nav class="bg-white shadow-lg">
        <div class="content-container">
            <div class="flex justify-between items-center py-4">
                <div class="flex items-center flex-shrink-0">
                    <a href="/" class="text-2xl font-bold story-text">Bloty</a>
                    <div class="flex flex-col ml-1 w-40">
                        <span class="text-xs text-gray-500 -mt-4">beta</span>
                        <span class="text-xs text-gray-500 mt-1 whitespace-nowrap">daily stories, poems, hooks, and excerpts</span>
                    </div>
                </div>
                
                <!-- Mobile menu button -->
                <div class="md:hidden">
                    <button id="mobile-menu-button" class="text-gray-500 hover:text-gray-600">
                        <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
                        </svg>
                    </button>
                </div>
                
                <!-- Desktop menu -->
                <div class="hidden md:flex items-center space-x-8">
                    <a href="/" class="text-gray-600 hover:text-gray-900">Home</a>
                                            <a href="/login.php" class="text-gray-600 hover:text-gray-900">Login</a>
                        <a href="/register.php" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">Register</a>
                                    </div>
            </div>
            
            <!-- Mobile menu -->
            <div id="mobile-menu" class="hidden md:hidden pb-4">
                <a href="/" class="block py-2 text-gray-600 hover:text-gray-900">Home</a>
                                    <a href="/login.php" class="block py-2 text-gray-600 hover:text-gray-900">Login</a>
                    <a href="/register.php" class="block py-2 text-blue-600 hover:text-blue-700">Register</a>
                            </div>
        </div>
    </nav>
    
    <main class="content-container py-8">
<div class="max-w-4xl mx-auto mb-12">
    <div class="bg-white p-6 hand-drawn mb-8">
     
        <div class="flex items-center justify-center space-x-4">
    <!-- Left Arrow -->
    <a href="?date=2025-05-18" 
        class="flex items-center justify-center w-10 h-10 rounded-full hover:bg-gray-100 transition-colors duration-200">
        <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
        </svg>
    </a>

    <!-- Calendar Grid -->
    <div class="grid grid-cols-7 gap-2 flex-1">
        <div class="border p-2 min-h-[80px] "><div class="text-right text-sm text-gray-600">May 16</div></div><div class="border p-2 min-h-[80px] bg-gray-50 "><div class="text-right text-sm text-gray-600">May 17</div></div><div class="border p-2 min-h-[80px] bg-gray-50 "><div class="text-right text-sm text-gray-600">May 18</div></div><div class="border p-2 min-h-[80px] bg-blue-50 bg-yellow-50 "><div class="text-right text-sm font-bold text-blue-600font-bold text-yellow-600">May 19</div></div><div class="border p-2 min-h-[80px] "><div class="text-right text-sm text-gray-600">May 20</div></div><div class="border p-2 min-h-[80px] "><div class="text-right text-sm text-gray-600">May 21</div></div><div class="border p-2 min-h-[80px] "><div class="text-right text-sm text-gray-600">May 22</div></div>    </div>

    <!-- Right Arrow -->
    <a href="?date=2025-05-20" 
        class="flex items-center justify-center w-10 h-10 rounded-full hover:bg-gray-100 transition-colors duration-200">
        <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-gray-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
        </svg>
    </a>
</div>

    </div>

    <!-- Story Content -->

<!-- Story Content -->
    <div class="bg-white p-6 hand-drawn mb-8">
        <p class="text-gray-600 text-center mb-4">
            There is no story on this date.
        </p>
    </div>
</div>

</main>
    
    <footer class="bg-white shadow-lg mt-auto">
        <div class="content-container py-6">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <p class="text-gray-600 mb-4 md:mb-0">&copy; 2025 Bloty. All rights reserved. Bloty operates on GMT time: 2025-05-19 21:49:32</p>
				<div class="space-x-8">
                    <a href="/privacy.php" class="text-gray-600 hover:text-gray-900">Privacy Policy</a>
                    <a href="/terms.php" class="text-gray-600 hover:text-gray-900">Terms of Service</a>
					                 </div>
            </div>
        </div>
    </footer>

    <script>
        // Mobile menu toggle
        const mobileMenuButton = document.getElementById('mobile-menu-button');
        const mobileMenu = document.getElementById('mobile-menu');
        
        if (mobileMenuButton && mobileMenu) {
            mobileMenuButton.addEventListener('click', () => {
                mobileMenu.classList.toggle('hidden');
            });
        }
    </script>
</body>
</html>                               

Whois info of domain

Domain Name: BLOTY.COM
Registry Domain ID: 115082200_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2025-02-02T02:58:15Z
Creation Date: 2004-03-25T08:53:05Z
Registry Expiry Date: 2026-01-02T04:59:59Z
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: DNS1.NAMECHEAPHOSTING.COM
Name Server: DNS2.NAMECHEAPHOSTING.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-19T21:49:17Z <<<
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