Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - mczha.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 17 May 2025 06:07:11 GMT
Server: Apache
Location: https://mczha.com/
Content-Length: 285
Connection: close
Content-Type: text/html; charset=iso-8859-1

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://mczha.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 17 May 2025 06:07:12 GMT
Server: Apache
Upgrade: h2
Connection: Upgrade, close
Last-Modified: Sun, 27 Apr 2025 10:44:51 GMT
ETag: "1b3a-633c041dcd0a1"
Accept-Ranges: bytes
Content-Length: 6970
Vary: Accept-Encoding
Content-Type: text/html

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: mczha.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">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>明水仙花 - 个人软件开发</title>
    <style>
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        header {
            background-color: #4a6fa5;
            color: white;
            padding: 2em 0;
            text-align: center;
        }
        
        nav {
            background-color: #3a5a8a;
            padding: 1em 0;
        }
        
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        
        nav li {
            margin: 0 1em;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 0.5em 1em;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: #2c4368;
        }
        
        .container {
            max-width: 1000px;
            margin: 2em auto;
            padding: 0 1em;
        }
        
        section {
            background-color: white;
            padding: 2em;
            margin-bottom: 2em;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        h1, h2, h3 {
            color: #4a6fa5;
        }
        
        .project {
            margin-bottom: 1.5em;
            padding-bottom: 1.5em;
            border-bottom: 1px solid #eee;
        }
        
        .project:last-child {
            border-bottom: none;
        }
        
        footer {
            background-color: #333;
            color: #ccc;
            text-align: center;
            padding: 2em 0;
            margin-top: 2em;
        }
        
        .footer-links {
            margin-bottom: 1em;
        }
        
        .footer-links a {
            color: #ccc;
            margin: 0 0.5em;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .beian {
            font-size: 0.9em;
        }
        
        .beian a {
            color: #ccc;
        }
        
        .beian a:hover {
            color: white;
        }
    </style>
</head>
<body>
    <header>
        <h1>明水仙花</h1>
        <p>个人软件开发与技术服务</p>
    </header>
    
    <nav>
        <ul>
            <li><a href="#home">首页</a></li>
            <li><a href="#about">关于我</a></li>
            <li><a href="#projects">项目展示</a></li>
            <li><a href="#skills">技术栈</a></li>
            <li><a href="#contact">联系方式</a></li>
        </ul>
    </nav>
    
    <div class="container">
        <section id="home">
            <h2>欢迎来到我的个人网站</h2>
            <p>我是一名专注于软件开发的技术爱好者,致力于创造高效、优雅的软件解决方案。</p>
            <p>在这里,您可以了解我的技术背景、查看我的项目作品,以及获取联系方式。</p>
        </section>
        
        <section id="about">
            <h2>关于我</h2>
            <p>我是明水仙花,一名拥有5年开发经验的软件工程师,专注于Web应用开发和移动应用开发。</p>
            <p>我热爱编程,喜欢解决复杂问题,并不断学习新技术来提升自己的技能。</p>
            <p>我的工作理念是:编写可维护、可扩展且高效的代码,同时注重用户体验。</p>
        </section>
        
        <section id="projects">
            <h2>项目展示</h2>
            
            <div class="project">
                <h3>企业管理系统</h3>
                <p>一个基于React和Node.js的全栈企业资源规划系统,包含员工管理、项目管理、财务跟踪等功能模块。</p>
                <p><strong>技术栈:</strong> React, Node.js, Express, MongoDB</p>
            </div>
            
            <div class="project">
                <h3>智能家居控制App</h3>
                <p>一款跨平台的移动应用,允许用户通过手机远程控制家中的智能设备,如灯光、温控器和安全系统。</p>
                <p><strong>技术栈:</strong> Flutter, Firebase, IoT协议</p>
            </div>
            
            <div class="project">
                <h3>数据分析可视化平台</h3>
                <p>一个数据分析和可视化工具,支持多种数据源导入,提供丰富的图表类型和交互式分析功能。</p>
                <p><strong>技术栈:</strong> Python, Django, D3.js, Pandas</p>
            </div>
        </section>
        
        <section id="skills">
            <h2>技术栈</h2>
            <h3>前端技术</h3>
            <ul>
                <li>HTML5, CSS3, JavaScript (ES6+)</li>
                <li>React, Vue.js, Angular</li>
                <li>TypeScript, Webpack, Babel</li>
            </ul>
            
            <h3>后端技术</h3>
            <ul>
                <li>Node.js, Express, Django, Flask</li>
                <li>Java Spring Boot, .NET Core</li>
                <li>RESTful API设计, GraphQL</li>
            </ul>
            
            <h3>数据库</h3>
            <ul>
                <li>MySQL, PostgreSQL, MongoDB</li>
                <li>Redis, Elasticsearch</li>
            </ul>
            
            <h3>其他技能</h3>
            <ul>
                <li>Docker, Kubernetes</li>
                <li>AWS, Azure云服务</li>
                <li>Git版本控制, CI/CD</li>
            </ul>
        </section>
        
        <section id="contact">
            <h2>联系方式</h2>
            <p>如果您对我的工作感兴趣或有任何问题,欢迎通过以下方式联系我:</p>
            <ul>
                <li>邮箱:</li>
                <li>电话:+86 </li>
                <li>GitHub:<a href="https://github.com/mingshuixianhua" target="_blank">github.com/mingshuixianhua</a></li>
            </ul>
        </section>
    </div>
    
    <footer>
        <div class="footer-links">
            <a href="#home">首页</a>
            <a href="#about">关于我</a>
            <a href="#projects">项目展示</a>
            <a href="#skills">技术栈</a>
            <a href="#contact">联系方式</a>
        </div>
        
        <div class="beian">
            <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备15011065号</a>
        </div>
        
        <p>&copy; 2025 明水仙花 - 个人软件开发. 保留所有权利.</p>
    </footer>
</body>
</html>                               

Whois info of domain

Domain Name: MCZHA.COM
Registry Domain ID: 1898548099_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2024-01-06T09:05:27Z
Creation Date: 2015-01-27T14:29:49Z
Registry Expiry Date: 2027-01-27T14:29:49Z
Registrar: Alibaba Cloud Computing (Beijing) Co., Ltd.
Registrar IANA ID: 420
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS10.HICHINA.COM
Name Server: DNS9.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-17T06:06:53Z <<<
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