Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - rduce.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 19 May 2025 06:34:37 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
location: https://rduce.com/
x-turbo-charged-by: LiteSpeed
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=MJnJM7RsUuexUX8NHwkMxO3kze9uq2hiInTH8UqrQVikAj%2B1H%2FlJxhWCcAB4LPAl2JZLDONG4ZFeGjSGyH1aJcKXOfcAhq68SED1xRcuBLD%2BBxAwRUqmKV%2BHvTP6tLpleD0XfB%2FH7OA%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 942191cf0b122d65-ARN
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=7579&min_rtt=7579&rtt_var=3789&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=165&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://rduce.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Mon, 19 May 2025 06:34:38 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/8.1.32
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=9udSQCIODdeCs4HVLrJx5tqOXaGY8Jwkmqsk9G1KWq89sCCjkf25tMa9bl7tMmJArqNRwnzRzdBwmOjuLQWzPw4rihDVVZhE11PfDRL8vzNNg0w%3D"}]}
Vary: Accept-Encoding,User-Agent
Server: cloudflare
X-Turbo-Charged-By: LiteSpeed
Cf-Cache-Status: DYNAMIC
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
CF-RAY: 942191d1dad95439-TLL
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: rduce.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>Rduce.com - Working to greener future</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
    <link rel="stylesheet" href="assets/style.css">
    <link href='https://fonts.googleapis.com/css?family=Manrope' rel='stylesheet'>
    <link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
</head>

<body class="bg-sign-up">
    <img src="assets/whitelist_signed_up.png" alt="Signed Up" style="display: none;">
    <img src="assets/logo.svg" alt="Logo" class="header-logo">
    <div class="container full-width">
        <div class="row signup-container">
            <div class="col-xl-3 col-md-4 col-sm-12">
                <h1 class="mb-3">Start with 300 km Travel Offset on Us</h1>
                <p class="mb-3 small">Sign up and we'll credit your free offset certificate directly to your account
                    when we launch.</p>
                <form id="signup-form">
                    <div class="mb-3">
                        <input type="email" id="email" class="form-control" placeholder="Your email!" required>
                    </div>
                    <button type="submit" class="btn btn-success w-100">Subscribe</button>
                </form>
                <p class="mt-3 text-muted opacity_50"><small>We care about protecting your data. Here's our <a href="#">Privacy
                            Policy</a>.</small></p>
            </div>
        </div>
    </div>

    <!-- Success Message -->
    <div class="container justify-content-center align-items-center d-none" id="success-message">
        <div class="row success-message-container">
            <div class="col-md-12 text-center">
                <div class="m-margin">
                    <img src="assets/logo.svg" alt="Logo" class="content-logo mb-4">
                    <h2>Sign up successful. We'll be in touch when we go live.</h2>
                    <div class="mt-4">
                        <img src="assets/checkmark.svg" alt="Success" style="width: 50px;">
                    </div>
                </div>
            </div>
        </div>
    </div>

    <script>
        document.getElementById('signup-form').addEventListener('submit', function (event) {
            event.preventDefault();

            const email = document.getElementById('email').value;
            const formData = new FormData();
            formData.append('email', email);

            fetch('submit_email.php', {
                method: 'POST',
                body: formData
            })
            .then(response => response.json())
            .then(data => {
                if (data.success) {
                    document.querySelector('.container').style.display = 'none';
                    document.getElementById('success-message').classList.remove('d-none');
                    document.querySelector('body').classList.add('bg-success');
                    document.querySelector('body').classList.remove('bg-sign-up');
                } else {
                    alert('There was an error with your submission. Please try again.');
                }
            })
            .catch(error => {
                console.error('Error:', error);
                alert('There was an error with your submission. Please try again.');
            });
        });
    </script>
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
        integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
        crossorigin="anonymous"></script>

</body>

</html>
                               

Whois info of domain

Domain Name: RDUCE.COM
Registry Domain ID: 1870260857_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.namecheap.com
Registrar URL: http://www.namecheap.com
Updated Date: 2024-05-30T15:16:14Z
Creation Date: 2014-08-08T18:17:10Z
Registry Expiry Date: 2027-08-08T18:17:10Z
Registrar: NameCheap, Inc.
Registrar IANA ID: 1068
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6613102107
Domain Status: ok https://icann.org/epp#ok
Name Server: ERIN.NS.CLOUDFLARE.COM
Name Server: WOZ.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-19T06:34:27Z <<<
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