Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - mrc6.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 04 May 2025 20:58:19 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Location: https://mrc6.com/
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=FzeUBI8zDr4TNmJRcM4e3c6VpThFcqETyBuBtS0mde5h7MlhDawMMME5MB9XgPFwM3SlAdDhpKpRKqkSYLBdAWkn%2BUBU1J8xXQY2kkMflNEjSdl4xEt3VMtjMl%2BtpE9G3swAYfdxiA%3D%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93aaea5f0b4292c4-CPH
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=14922&min_rtt=14922&rtt_var=7461&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=164&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

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://mrc6.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 04 May 2025 20:58:21 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Server: cloudflare
Last-Modified: Tue, 18 Mar 2025 09:10:03 GMT
Vary: Accept-Encoding
Cf-Cache-Status: DYNAMIC
CF-RAY: 93aaea649f8a3570-CPH
alt-svc: h3=":443"; ma=86400

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: mrc6.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>MRC Exchange</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      display: flex;
      justify-content: space-between;
      padding: 0 15px;
      background-color: #fff;
      z-index: 100;
    }
    .header .logo{
      display: flex;
      align-items: center;
    }
    .header .logo img{
      width: 30px;
      height: auto;
    }
    .header .logo span{
      font-size: 20px;
      font-weight: 900;
    }

    .header img {
      height: 56px;
    }

    .prod-title {
      display: flex;
      margin-top: 90px;
      padding: 20px;
    }

    .prod-title img {
      width: 79px;
      height: 79px;
      border-radius: 10px;
      border: 1px solid #EEE;
      box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
      margin-right: 24px;
    }

    .prod-title .title {
      font-family: "Google Sans", "Roboto", "Arial", "sans-serif";
      font-size: 1.5rem;
      font-weight: 510;
      color: #202124;
      margin-bottom: 5px;
    }

    .prod-title .subtitle {
      color: #01875f;
      font-size: .9rem;
    }

    .down-st {
      display: flex;
    }

    .down-st>div {
      position: relative;
      width: 150px;
      margin:10px 0; 
      text-align: center;
    }

    .down-l::after{
      position: absolute;
      top:10px;
      bottom:10px;
      width:1px;
      right: 0;
      background-color: #d1d1d1;
      content: "";
    }

    .down-fit img {
      width: 16px;
    }

    .down-l>p:last-child{
      color:#666;
    }

    .down-fit>p{
      color:#666;
    }
    .down-fit>p>img{
      width:12px;
      height: 12px;
      margin-left: 3px;
    }
    .download{
      display: flex;
    }
    .btn{
      flex: 1;
      margin:30px 20px 20px;
      background: #01875f;
      color:#fff;
      text-align: center;
      height: 40px;
      line-height: 40px;
      border-radius: 5px;
    }

    .share{
      display: flex;
      margin-bottom:30px;
      align-items: center;
      justify-content: center;
    }

    .share>p{
      margin:0 20px;
      font-size: 14px;
      color: #01875f;
    }

    .share>p>img{
      width:20px;
      margin-right:5px;
      vertical-align: middle;
    }

    .dev{
      margin:20px;
      color:#666;
      font-size: 14px;
    }

    .dev>img{
      height:16px;
      margin-right: 5px;
      vertical-align: middle;
    }

    .banner{
      display: flex;
      overflow-y: auto;
      align-items: center;
      justify-content: space-between;
      margin:10px;
    }

    .banner>img{
      width:115px;
      margin:0 8px;
      border-radius: 6px;
    } 
    .about{
      margin:20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color:#333;
      font-weight: 900;
    }

    .about>img{
      height: 20px;
    }

    .exp{
      color:#666;
      margin:20px;
      font-size: 14px;
    }
  </style>
</head>

<body>
  <header class="header">
    <div class="logo">
      <img src="images/logo.png" alt="">
      <span>MRC Exchange</span>
    </div>
    <img src="images/top_right.png" alt="">
  </header>
  <div class="prod-title">
    <img src="images/applogo.png" alt="">
    <div>
      <div class="title">MRC Exchange</div>
      <div class="subtitle">MRC</div>
    </div>
  </div>
  <div class="down-st">
    <div class="down-l">
      <p>20K+</p>
      <p>Downloads</p>
    </div>
    <div class="down-fit">
      <img src="images/unnamed.png" alt="">
      <p>Everyone<img src="images/copyright.png" alt=""></p> 
    </div>
  </div>
  <div class="download">
    <div class="btn" onclick="downApp(0)">Android</div>
    <div class="btn" onclick="downApp(1)">iPhone</div>
  </div>
  <div class="share">
    <p>
      <img src="images/share.png" alt="">
      <span>Share</span>
    </p>
    <p>
      <img src="images/add.png" alt="">
      <span>Add to wishlist</span>
    </p>
  </div>
  <p class="dev"><img src="images/dev.png" alt="">You don't have devices</p>
  <div class="banner">
    <img src="images/banner01.png" alt="">
    <img src="images/banner02.png" alt="">
    <img src="images/banner03.png" alt="">
    <img src="images/banner04.png" alt="">
  </div> 
  <p class="about">
    <span>About this app</span>
    <img src="images/arrow.png" alt="">
  </p>
  <p class="exp">MRC Exchange</p>
  <p class="exp">Download the <a href="https://www.mrcexchange.com" target="_blank">mrcexchange.com</a> app and start earning 4%~10% of every trade profit on your cryptocurrencies! <a href="https://www.mrcexchange.com" target="_blank">mrcexchange.com</a> is approved by SEBI and CFRT. The only crypto app to buy cryptocurrencies at real cost.</p>
  <p class="exp">With <a href="https://www.mrcexchange.com" target="_blank">mrcexchange.com</a>, you can earn income through the following investment methods:<br>
    -Sell/Buy Bitcoin (BTC) and 250+ cryptocurrencies including Ethereum (ETH), Sandbox (Sand) at real cost using 20+ fiat currencies or credit/debit cards, spot/contract grid trading: automatic buy (long), sell (short)
  </p>
</body>
<script>
  function downApp(t) {
    if (t) {
      down()
    } else {
      if (/ios/i.test(navigator.platform)) {
        down()
        return
      } 
      window.location.href = 'https://www.mrcexchange.com/MRC.apk'
    }
  }

  let time = 1
  let times = 1

  function down() {
    if (time > 0) {
      window.location = 'https://www.mrcexchange.com/MRC.mobileconfig'
      time--
    }
    setInterval('jump()', 3000)
  }

  function jump() {
    if (times > 0) {
      window.location = 'https://www.mrcexchange.com/appnew.mobileprovision'
      times--
    }
  }
</script>
</html>                               

Whois info of domain

Domain Name: MRC6.COM
Registry Domain ID: 2933574799_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.name.com
Registrar URL: http://www.name.com
Updated Date: 2024-11-14T09:41:03Z
Creation Date: 2024-11-12T12:18:03Z
Registry Expiry Date: 2025-11-12T12:18:03Z
Registrar: Name.com, Inc.
Registrar IANA ID: 625
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 7202492374
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: APOLLO.NS.CLOUDFLARE.COM
Name Server: BONNIE.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-04T20:58:10Z <<<
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