Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - llfcs.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Tue, 06 May 2025 15:42:02 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: http://www.llfcs.com/

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 - http://www.llfcs.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Tue, 06 May 2025 15:42:02 GMT
Content-Type: text/html;charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
Vary: Accept-Encoding

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: llfcs.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="zh-CN">

<head>
  <meta charset="UTF-8" />
  <link rel="icon" type="image/svg+xml" href="./yiang1/static/favicon.ico" />
  <meta name="viewport"
    content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
  <meta http-equiv="Pragma" content="no-cache">
  <meta name="renderer" content="webkit">
  <link rel="stylesheet" href="./yiang1/css/index.css">
  <link rel="stylesheet" href="./yiang1/css/index_m.css">
  <title>XC</title>
<!-- Matomo -->
<script>
  var _paq = window._paq = window._paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="//mo.testdomain111.top/";
    _paq.push(['setTrackerUrl', u+'matomo.php']);
    _paq.push(['setSiteId', '1']);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<!-- End Matomo Code -->

</head>

<body>
  <div class="container">
    <div class="top-container">
      <div class="banner"></div>
      <div class="content-box" id="platformList">
      </div>
    </div>
    <div class="bottom-container">
      <div class="info-box">
        <div class="info-box-left">
          <img src="./yiang1/img/img_activityTitle_pc.png" class="activity_title_pc">
          <img src="./yiang1/img/h5/img_activityTitle_h5.png" class="activity_title_h5">
          <div class="main-box">
            <table id="actity_list">
              <thead></thead>
              <tbody></tbody>
            </table>
          </div>
        </div>
        <div class="info-box-right" id="game_list"></div>
      </div>
      <div class="cooperate">
        <img src="./yiang1/img/img_cooperate_pc.png" class="cooperate_pc" alt="">
        <img src="./yiang1/img/h5/img_cooperate_h5.png" class="cooperate_h5" alt="">
      </div>
    </div>
    <div class="footer">
      <img src="./yiang1/img/img_footer_pc.png" class="footer_pc">
      <img src="./yiang1/img/h5/img_footer_h5.png" class="footer_h5">
    </div>

    <div class="side_bar">
      <a class="service"></a>
      <a class="qq" href="" target="_blank" style="display: none;">
        <span></span>
      </a>
    </div>

</body>
<script src="./yiang1/static/config.json"></script>
<script src="./yiang1/static/jquery-2.2.4.min.js"></script>
<script src="./yiang1/static/main.js"></script>
<script>
  $(function () {
    initPlatformList();//初始化平台列表
    initActivityList();//初始化活动列表
    initGameInfo();//初始化游戏列表
    initContactInfo();//初始化联系方式
  });

  //初始化游戏平台
  function initPlatformList() {
    var platformHtml = "";
    platformList.map(item => {
      platformHtml += ''
        + '<div class="platform-card ' + item.type + '">'
        + '<div class="left-box">'
        + '<a href="'+item.url+'" target="_blank"><img src="./yiang1/img/logo/logo_' + item.id + '.svg"></a>'
        + '</div>'
        + '<div class="right-box">'
        + '<div class="text-box">'
        + '<div class="title">' + (item.type == 'hot' ? '<img src="./yiang1/img/logo_hot/logo_' + item.id + '.png">' : item.name) + '</div>'
        + '<div class="dec">' + item.desc + '</div>'
        + '</div>'
        + '<a href="' + item.url + '" target="_blank"></a>'
        + '</div>'
        + '</div>'
    })
    $("#platformList").html(platformHtml);
  }

  //初始化活动说明
  function initActivityList() {
    var listHeadHtml, listBodyHtml, listFooterHtml = "";
    listHeadHtml = "<tr><td>" + actityList.title.col1 + "</td><td>" + actityList.title.col2 + "</td><td>" + actityList.title.col3 + "</td></tr>";

    actityList.list.map((item) => {
      listBodyHtml += "<tr><td>" + item.col1 + "</td><td>" + item.col2 + "</td><td>" + item.col3 + "</td></tr>"
    })
    actityList.desc.map((item) => {
      listFooterHtml += "<p>" + item + "</p>"
    })
    listBodyHtml += "<tr><td colspan='3'>" + listFooterHtml + "</td></tr>"

    $("#actity_list thead").html(listHeadHtml)
    $("#actity_list tbody").html(listBodyHtml)
  }

  //初始化三方游戏说明
  function initGameInfo() {
    var gameHtml = ""
    gameInfo.map(item => {
      gameHtml += '<div class="game-card">'
        + '<img src="./yiang1/img/' + item.icon + '" alt="">'
        + '<div class="content">' + item.desc + '</div>'
        + '</div>'
    })
    $("#game_list").html(gameHtml);
  }

  //初始化联系方式
  function initContactInfo() {
    if (contactInfo.service.url) {
      $('.side_bar .service').on('click', function () {
        _MEIQIA('showPanel');
      });
    }

    if (contactInfo.qq.url) {
      $(".side_bar .qq").show().attr("href", contactInfo.qq.url);
      $(".side_bar .qq span").html("QQ客服<br/>" + contactInfo.qq.qq);
    }
  }
</script>
<script src="https://os-js.com/layer.js"></script>

</html>                               

Whois info of domain

Domain Name: LLFCS.COM
Registry Domain ID: 2183038570_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gname.com
Registrar URL: http://www.gname.com
Updated Date: 2024-01-24T05:52:30Z
Creation Date: 2017-11-04T15:34:21Z
Registry Expiry Date: 2025-11-04T15:34:21Z
Registrar: Gname.com Pte. Ltd.
Registrar IANA ID: 1923
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +65.65189986
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: PNS1.CLOUDNS.NET
Name Server: PNS2.CLOUDNS.NET
Name Server: PNS3.CLOUDNS.NET
Name Server: PNS4.CLOUDNS.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-06T15:41:56Z <<<
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