Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - ccglk.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sun, 11 May 2025 03:06:27 GMT
Content-Type: text/html
Content-Length: 5469
Last-Modified: Thu, 18 Jan 2024 08:19:00 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "65a8def4-155d"
Accept-Ranges: bytes

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: ccglk.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 http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>中天鑫盛科技有限公司</title>
	</head>

	<body>
		<header class="header">
			<div class="header-cont">
				<p class="header-title">中天鑫盛科技(深圳)有限公司</p>
				<nav class="header-nav">
					<a id="nav1" href="#home" onclick="clickNav('1')">首页</a>
					<a id="nav2" href="#product" onclick="clickNav('2')">产品</a>
					<a id="nav3" href="#about" onclick="clickNav('3')">关于我们</a>
				</nav>
			</div>
		</header>
		<div class="content">
			<div class="con cont-1" id="home">
				<div class="cont-div">
					<p class="p1">公司简介</p>
					<p>公司致力于各类产品的开发与运营,依托在多年技术与运 营积累的经验,公司自主开发了“羊驼计步”快应用产品, 经过不断的探索和完善,在产品、技术、运营、推广等方
						面逐渐形成了自己独特的风格和模式,现公司拥有经验丰 富的产品运营团队和强大的技术开发队伍,未来将致力于 内容产品的开拓等工作。</p>
				</div>
				<div class="cont-img">
					<img src="./images/Group 969.png" alt="" srcset="">
				</div>
			</div>
			<div class="con cont-2" id="product">
				<div class="cont-img">
					<img src="./images/Group 970.png" alt="" srcset="">
				</div>
				<div class="cont-div">
					<p class="p1">羊驼计步</p>
					<p>“羊驼计步”是一款超适合喜欢健身,运动,或者准备运动的朋友的软件。在这 里,你可以知道你每天的运动步数,消耗卡路里,保持健康的摄入和消耗平衡。
						记录每天的喝水情况,让身体保持充足的水量,远离疾病,告别身体亚健康状 态。</p>
				</div>

			</div>
			<div class="con cont-3" id="about">
				<div class="cont-div">
					<p class="p1">关于我们</p>
					<p>公司在互联网产品研发领域多年发展,拥有独立专业的产研技术团队,现 已在技术,产品、运营、内容领域积累丰富的经验。未来将在快应用产品
						深耕,深入挖觉用户需求,不断提升产品用户体验、丰富内容内容丰富、 知识学习等多方面综合发展。</p>
				</div>
				<div class="cont-img">
					<img src="./images/Group 968.png" alt="" srcset="">
				</div>
			</div>
		</div>
		<footer>
			<p>CopyRight © 2021 - 2022 中天鑫盛科技(深圳)有限公司 版权所有备案编号:<a href="https://beian.miit.gov.cn/"
					target="_blank">粤ICP备20003782号</a></p>
			<p> 公司地址:深圳市罗湖区东门街道湖贝社区文锦中路1027号深业大厦703</p>
		</footer>
	</body>
	<script>
		function clickNav(item) {
			let navItem = document.getElementById('nav' + item)
			for (let i of navItem.parentElement.children) {
				i.className = ''
			}
			navItem.className = 'sel'
		}
	</script>
	<style>
		body,
		p,
		html {
			padding: 0;
			margin: 0;

		}

		.header {
			height: 60px;
			width: 100%;
			background: #ffffff;
			box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.06);
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			position: fixed;
			top: 0px;
			left: 0px;
		}

		.header-cont {
			min-width: 1440px;
			width: 1440px;
			height: 60px;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: center;
		}

		.header-title {
			color: #333333;
			font-size: 30px;
			display: inline-block;
		}

		.header-nav {
			float: right;
			height: 60px;
		}

		.header-nav a {
			display: inline-block;
			width: 100px;
			height: 60px;
			line-height: 60px;
			text-align: center;
			text-decoration: none;
			color: #333333;

		}

		.header-nav a:hover {
			background-color: #FFFAE4;
			color: #343333;
			font-weight: 900;

		}

		.header-nav .sel {
			background-color: #FFFAE4;
			color: #343333;

		}

		.content {
			margin-top: 100px;
			width: 100%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;

		}

		.con {
			min-height: 600px;

			width: 100%;
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;

		}

		.cont-1 {
			min-height: 552px;
			padding-top: 200px;
			border-bottom: 100px #fafafa solid;
		}

		.cont-2 {
			background: #fafafa;
			padding: 200px 0px;
		}

		.cont-3 {
			background: #fff;
			padding: 200px 0px;
		}

		.con .cont-div {
			width: 50%;
			height: 100%;
			justify-content: center;
			align-items: center;
			flex-direction: column;
			display: flex;
		}

		.con .cont-div p {
			width: 50%;
			line-height: 30.5px;
			font-size: 18px;
			color: #333333;
		}

		.con .cont-div .p1 {
			color: #333333;
			font-size: 48px;
			margin: 30px 0px;
			font-weight: 700;
		}

		.con .cont-img {
			width: 50%;
			justify-content: center;
			display: flex;
			align-items: center;
		}

		footer {
			height: 120px;
			width: 100%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			font-size: 12px;
			color: #333333;
			line-height: 20px;
		}
	</style>

</html>
                               

Whois info of domain

Domain Name: CCGLK.COM
Registry Domain ID: 2660230691_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2024-04-15T06:52:29Z
Creation Date: 2021-12-08T06:30:52Z
Registry Expiry Date: 2027-12-08T06:30:52Z
Registrar: Alibaba Cloud Computing Ltd. d/b/a HiChina (www.net.cn)
Registrar IANA ID: 1599
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.95187
Domain Status: ok https://icann.org/epp#ok
Name Server: DNS23.HICHINA.COM
Name Server: DNS24.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-11T03:06:21Z <<<
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