Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - wz7d.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/html; charset=UTF-8
Server: Microsoft-IIS/8.5
X-Powered-By: PHP/7.4.33
X-Powered-By: ASP.NET
Date: Fri, 02 May 2025 18:18:38 GMT
Content-Length: 4832

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: wz7d.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>网赚起点</title>
		<meta name="description" content="爆发点始于2012年,专注于广告任务网等网赚平台的功能开发与维护" />
		<meta name="keywords" content="广告体验源码,游戏试玩源码,打码平台源码,幸运28源码,竞猜源码,广告任务网源码,悬赏任务源码" />
		<link href="https://cdn.staticfile.org/Buttons/2.0.0/css/buttons.css" rel="stylesheet">
		<link href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
		<link href="https://cdn.staticfile.org/animate.css/3.7.2/animate.min.css" rel="stylesheet">
		<style>
			html,body{
				margin: 0;
				padding: 0;
				width: 100%;
				height: 100%;
			}
			.content{
				position: absolute;
				top: 25%;
				left: 0px;
				width: calc(60% - 40px);
				height: calc(50% - 40px);
				
			}
			.content2{
				position: absolute;
				top: 25%;
				right: 0px;
				width: calc(60% - 40px);
				height: calc(50% - 40px);
				
			}
			.home{
				position: absolute;
				left: 0;
				bottom: 0px;
				background: #ff5558;
				color: #FFFFFF !important;
				font-size: 14px;
				font-weight: 500;
			}
			.home:hover{
				color: #000000 !important;
			}
			a{
				color: #FFFFFF;
				text-decoration: none;
			}
			a:hover{
				color: #000000;
			}
			.msg{
				margin: 0 0 0 20px;
				padding: 0;
			}
			.msg>li{
				border-radius: 10px;
				background: rgba(0, 0, 0, 0.2);
				color: #FFFFFF;
				font-size: 16px;
				padding: 10px;
				list-style: none;
				margin-top: 20px;
				display: none;
			}
			.logo a {
			    background: url('http://www.wz7d.net/images/logos2.png') no-repeat scroll 0 0;
			    width: 180px;
			    height: 35px;
			    text-indent: -9999px;
			    top: 28px;
			    display: block;
			    position: relative;
			}
			.footer{
				width: 50%;
				height: 30px;
				position: fixed;
				left: 0;
				bottom: 0;
				text-align: center;
				font-size: 12px;
				color: #888888;
			}
			.footer a{
				color: #888888;
			}
			.footer a:hover{
				color: #ff5558;
			}
		</style>
		
	</head>
	<body>
		<div style="position: fixed;width: 50%;height: 100%; left: 0px;background: FFFFFF;">
			<div class="content2">
				<div class="logo"><a href="https://www.baofadian.net/"></a></div>
				<a href="https://www.baofadian.net/" class="button home">官网首页</a>
			</div>
		</div>
		<div style="position: fixed;width: 50%;height: 100%; right: 0px;background: #ff5558;">
			<div class="content">
				<ul class="msg">

					<li>爆发点始于2012年,专注于广告任务网等网赚平台的功能开发与维护</li>

					<li>2012年 - 网赚起点(<a target="_blank" href="http://wz7d.com">wz7d.com</a>)建立,提供广告任务网免费建站</li>
					<li>2015年 - 【更名】网站起点(<a target="_blank" href="https://wz7d.net">wz7d.net</a>)提供模块化建站服务</li>
					<li>2020年 - 【更名】爆发点(<a target="_blank" href="https://baofadian.net">baofadian.net</a>)注册《温州爆发点网络科技有限公司》</li>
				</ul>
			</div>
		</div>
		 		<div class="footer">
			 ©2013-2024 网站起点 <a href="https://beian.miit.gov.cn" target="_blank">
				浙ICP备20018348号-1			 

			 </a>
		</div>
		<script src="https://cdn.staticfile.org/jquery/1.8.2/jquery.min.js"></script>
		<script>
			$(function() {
			    $('span').hide();
			    $('p').hide();
			 
			    animate_show('li:eq(0)', 'bounceInRight');
				animate_delay('li:eq(0)', 'li:eq(1)', 'bounceInRight');
			    animate_delay('li:eq(1)', 'li:eq(2)', 'bounceInRight');
			    animate_delay('li:eq(2)', 'li:eq(3)', 'bounceInRight');
				animate_delay('li:eq(3)', 'li:eq(4)', 'bounceInRight');
			 
			    /**
			     * 使用一个效果来显示一个元素
			     * @param  {string} element 元素
			     * @param  {string} animate animate.css的效果
			     * @return {void}
			     */
			    function animate_show(element, animate) {
			        $(element).show().addClass('animated ' + animate);
			    }
			 
			    /**
			     * 顺序显示第二个元素的效果
			     * @param  {string} element1 等待结束的元素
			     * @param  {string} element2 接下来要显示的元素
			     * @param  {string} animate  animate.css的效果
			     * @return {void}          
			     */
			    function animate_delay(element1, element2, animate) {
			        $(element1).one('webkitAnimationEnd mozAnimationEnd oAnimationEnd animationEnd', function() {
			            animate_show(element2, animate);
			        });
			    }
			});
		</script>
	</body>
</html>                               

Whois info of domain

Domain Name: WZ7D.COM
Registry Domain ID: 1688684400_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2024-06-05T02:11:41Z
Creation Date: 2011-11-24T00:40:22Z
Registry Expiry Date: 2025-11-24T00:40:22Z
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: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
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-02T18:18:31Z <<<
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