Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - wuqii.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.14.2
Date: Mon, 19 May 2025 00:31:53 GMT
Content-Type: text/html
Content-Length: 10220
Last-Modified: Sat, 27 Aug 2022 17:11:15 GMT
Connection: keep-alive
ETag: "630a5033-27ec"
Accept-Ranges: bytes

HTTP Code 200 OK

200 http 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: wuqii.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 name="generator" content="Hugo 0.92.0" />

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    
    <meta name="referrer" content="no-referrer-when-downgrade">
    

    <title>学习经验分享</title>
    <meta property="og:title" content="学习经验分享 | 勿乞的博客(为啥博客名不能出现博客两个字?)">
    <meta property="og:type" content="website">
    <meta name="Keywords" content="勿乞,java,android,博客,python,前端">
    <meta name="description" content="这个人很懒,什么都没有留下">
    <meta property="og:url" content="http://www.wuqii.com/">
    <link rel="shortcut icon" href='/favicon.ico'  type="image/x-icon">

    <link rel="stylesheet" href='/css/normalize.css'>
    <link rel="stylesheet" href='/css/style.css'>
    <link rel="alternate" type="application/rss+xml" href="http://www.wuqii.com/index.xml" title="学习经验分享" />
    <script type="text/javascript" src="//cdn.bootcdn.net/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

    
    
    
    
    
    
</head>


<body>
    <header id="header" class="clearfix">
    <div class="container">
        <div class="col-group">
            <div class="site-name ">
                
                    <h1>
                        <a id="logo" href="http://www.wuqii.com">
                            学习经验分享
                        </a>
                    </h1>
                
                <p class="description">勿乞的博客(为啥博客名不能出现博客两个字?)</p>
            </div>
            <div>
                <nav id="nav-menu" class="clearfix">
                    <a class="current" href="http://www.wuqii.com">首页</a>
                    
                    <a  href="http://www.wuqii.com/archives/" title="归档">归档</a>
                    
                    <a  href="http://www.wuqii.com/about/" title="关于">关于</a>
                    
                </nav>
            </div>
        </div>
    </div>
</header>

    <div id="body">
        <div class="container">
            <div class="col-group">

                <div class="col-8" id="main">
                    
<div class="res-cons">
    
    <article class="post">
        <header>
            <h1 class="post-title">
                <a href="http://www.wuqii.com/post/shell_excute_on_linux/" title="Linux下执行sh脚本的方式">Linux下执行sh脚本的方式</a>
            </h1>
        </header>
        <date class="post-meta meta-date">
            2022年1月17日
        </date>
        
        <div class="post-meta">
            <span>|</span>
            
            <span class="meta-category"><a href='/categories/linux'>linux</a></span>
            
        </div>
        
        <div class="post-content">
            Linux下执行sh脚本的方式 以test.sh脚本为例 #!/bin/bash echo &quot;step 1 sleeping&quot; sleep 200 echo &quot;step 2 sleeping&quot; sleep 200 直接运行脚本./test.sh 在当前shell执行脚本,需要有执行脚本的权限(x权限) 执行后,有两个新进程在运行:test.sh和sleep 通过sh运行脚本sh test.sh 新建一个shell执行脚本,只需要有读……
        </div>
        <p class="readmore"><a href="http://www.wuqii.com/post/shell_excute_on_linux/">阅读全文</a></p>
    </article>
    
    <article class="post">
        <header>
            <h1 class="post-title">
                <a href="http://www.wuqii.com/post/install_python_on_linux/" title="Linux下Python安装">Linux下Python安装</a>
            </h1>
        </header>
        <date class="post-meta meta-date">
            2022年1月17日
        </date>
        
        <div class="post-meta">
            <span>|</span>
            
            <span class="meta-category"><a href='/categories/linux'>linux</a></span>
            
        </div>
        
        <div class="post-content">
            Linux下Python安装 当前环境: Debian WSL 安装Python版本: 3.8.0 安装编译依赖包 1 2 3 sudo apt update sudo apt upgrade sudo apt-get install -y build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev tar wget vim 下载并解压Python源码 1 2 3 4 5 6 mkdir Downloads cd /Downloads &amp;&amp; wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz cd /usr/local/src # 若为`tar.xz`文件,则`sudo tar -Jxv -f Python-3.8.0.tar.xz` sudo tar -zxf ~/Downloads/Python-3.8.0.tgz cd Python-3.8.0 配置编译及安装Pytho……
        </div>
        <p class="readmore"><a href="http://www.wuqii.com/post/install_python_on_linux/">阅读全文</a></p>
    </article>
    
    <article class="post">
        <header>
            <h1 class="post-title">
                <a href="http://www.wuqii.com/post/init_linux/" title="Linux初始化配置">Linux初始化配置</a>
            </h1>
        </header>
        <date class="post-meta meta-date">
            2022年1月17日
        </date>
        
        <div class="post-meta">
            <span>|</span>
            
            <span class="meta-category"><a href='/categories/linux'>linux</a></span>
            
        </div>
        
        <div class="post-content">
            Linux初始化配置 配置命令别名 1 alias ll=&#34;ls -l&#34; 配置终端显示 1 PS1=&#34;\[\033[01;32m\]\u\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$&#34; 新增用户 1 2 3 4 5 6 7 8 9 10 11 12 13 # 新建用户 # adduser XXX useradd -d /home/XXX -m XXX # 设置/修改 密码 passwd XXX # 创建分组 groupadd YYY # 加入分组 gpasswd -a XXX YYY # 从分组中移除 gpasswd -ad XXX YYY # 分配文件夹权限 chmod -R 777 ZZZ 挂载硬盘 查看硬盘信息 1 2 3 fdisk -l # 查看硬盘是否挂载 df -l 查看硬盘是否有……
        </div>
        <p class="readmore"><a href="http://www.wuqii.com/post/init_linux/">阅读全文</a></p>
    </article>
    
    <article class="post">
        <header>
            <h1 class="post-title">
                <a href="http://www.wuqii.com/post/test_post/" title="测试文章">测试文章</a>
            </h1>
        </header>
        <date class="post-meta meta-date">
            2022年1月17日
        </date>
        
        <div class="post-content">
            测试文章 这是一个测试文章!……
        </div>
        <p class="readmore"><a href="http://www.wuqii.com/post/test_post/">阅读全文</a></p>
    </article>
    
    





</div>

                    <footer id="footer">
    <div>
        &copy; 2022 <a href="http://www.wuqii.com">学习经验分享 By 勿乞</a>
        
        | <a rel="nofollow" target="_blank" href="http://beian.miit.gov.cn/">鄂ICP备19001282号-1</a>
        
    </div>
    <br />
    <div>
        <div class="github-badge">
            <a href="https://gohugo.io/" target="_black" rel="nofollow"><span class="badge-subject">Powered by</span><span class="badge-value bg-blue">Hugo</span></a>
        </div>
        <div class="github-badge">
            <a href="https://www.flysnow.org/" target="_black"><span class="badge-subject">Design by</span><span class="badge-value bg-brightgreen">飞雪无情</span></a>
        </div>
        <div class="github-badge">
            <a href="https://github.com/flysnow-org/maupassant-hugo" target="_black"><span class="badge-subject">Theme</span><span class="badge-value bg-yellowgreen">Maupassant</span></a>
        </div>
    </div>
</footer>



<a id="rocket" href="#top"></a>
<script type="text/javascript" src='/js/totop.js?v=0.0.0' async=""></script>



    <script type="text/javascript" src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js" async></script>




                </div>

                <div id="secondary">
    <section class="widget">
        <form id="search" action='http://www.wuqii.com/search/' method="get" accept-charset="utf-8" target="_blank" _lpchecked="1">
      
      <input type="text" name="q" maxlength="20" placeholder="Search">
      <input type="hidden" name="sitesearch" value="http://www.wuqii.com">
      <button type="submit" class="submit icon-search"></button>
</form>
    </section>
    
    <section class="widget">
        <h3 class="widget-title">最近文章</h3>
<ul class="widget-list">
    
    <li>
        <a href="http://www.wuqii.com/post/shell_excute_on_linux/" title="Linux下执行sh脚本的方式">Linux下执行sh脚本的方式</a>
    </li>
    
    <li>
        <a href="http://www.wuqii.com/post/install_python_on_linux/" title="Linux下Python安装">Linux下Python安装</a>
    </li>
    
    <li>
        <a href="http://www.wuqii.com/post/init_linux/" title="Linux初始化配置">Linux初始化配置</a>
    </li>
    
    <li>
        <a href="http://www.wuqii.com/post/test_post/" title="测试文章">测试文章</a>
    </li>
    
</ul>
    </section>

    

    <section class="widget">
        <h3 class="widget-title"><a href='/categories/'>分类</a></h3>
<ul class="widget-list">
    
    <li><a href="http://www.wuqii.com/categories/linux/">linux (3)</a></li>
    
</ul>
    </section>

    <section class="widget">
        <h3 class="widget-title"><a href='/tags/'>标签</a></h3>
<div class="tagcloud">
    
    <a href="http://www.wuqii.com/tags/linux/">linux</a>
    
    <a href="http://www.wuqii.com/tags/python/">python</a>
    
    <a href="http://www.wuqii.com/tags/shell/">shell</a>
    
</div>
    </section>

    
<section class="widget">
    <h3 class="widget-title">友情链接</h3>
    <ul class="widget-list">
        
        <li>
            <a target="_blank" href="http://www.wuqii.com" title="勿乞的博客">勿乞的博客</a>
        </li>
        
    </ul>
</section>


    <section class="widget">
        <h3 class="widget-title">其它</h3>
        <ul class="widget-list">
            <li><a href="http://www.wuqii.com/index.xml">文章 RSS</a></li>
        </ul>
    </section>
</div>
            </div>
        </div>
    </div>
</body>

</html>                               

Whois info of domain

Domain Name: WUQII.COM
Registry Domain ID: 2345018489_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.paycenter.com.cn
Registrar URL: http://www.xinnet.com
Updated Date: 2024-01-12T14:09:48Z
Creation Date: 2018-12-20T09:27:21Z
Registry Expiry Date: 2028-12-20T09:27:21Z
Registrar: Xin Net Technology Corporation
Registrar IANA ID: 120
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.4008182233
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: HEDY.DNSPOD.NET
Name Server: LATIN.DNSPOD.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-19T00:31:39Z <<<
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