Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - uudcs.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sat, 10 May 2025 14:21:05 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: https://uudcs.com/
Strict-Transport-Security: max-age=31536000

HTTP Code 301 Moved Permanently

http status code 301 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.

302 Found - https://uudcs.com/
HTTP Status: 302
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sat, 10 May 2025 14:21:06 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Location: /merchant.php/Login
Strict-Transport-Security: max-age=31536000

HTTP Code 302 Found (Moved Temporarily)

http status code 302 indicates that the requested resource is temporarily available at a different URL.

When is Code 302 used?

  • When temporarily changing a page URL
  • When testing new content
  • During temporary maintenance

What does Code 302 mean for the user?

The user is automatically redirected to the new URL, but search engines continue to index the old address.

200 OK - /merchant.php/Login
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sat, 10 May 2025 14:21:07 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: PHPSESSID=oc0d8tmsc8ibt3b6ig1f49tlib; expires=Sun, 11-May-2025 14:21:07 GMT; Max-Age=86400; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Cache-control: private
X-Powered-By: ThinkPHP
Strict-Transport-Security: max-age=31536000

HTTP Code 200 OK

http status code 200 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: uudcs.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<script type="text/javascript" src="/Merchant/Public/Admin/js/jquery-1.8.3.min.js"></script>
<link rel="stylesheet" href="/Merchant/Public/Admin/css/login_v1.css?v=2">
<title>用户登录-XUPAKO商城商户管理系统</title>
</head>
<body>
<!-- 顶部导航 -->
	<div class="top_nav">
		<div class="wrap">
			<ul>
				<li class="nav_link"><a href="https://www.xupako.com">XUPAKO官网</a></li>
				<li class="nav_link"><a>商户管理系统</a></li>
			</ul>
			<ul class="login">
				<li><a href="#">会员登录</a></li>
				<li class="current"><a>商家中心</a></li>
				<li><a href="#">在线招商</a></li>
			</ul>
		</div>
	</div>
    
  <!--登录-->
  <div class="loginLayout">
       <div class="loginMain">
       		<div class="Lobanner"><img src="/Merchant/Public/Admin/images//loginBanner.png" width="90%"></div>
            <div class="Logincircle">
                 <p class="logoinlogo"><img src="/Merchant/Public/Admin/images//logo.png" height="50"></p>
                 <p class="Usertxt">
                 	<input type="text" id="username" placeholder="用户名/邮箱地址/手机号" class="logintxt">
                    <i class="chacha cha"><img src="/Merchant/Public/Admin/images//cancel_ico.png"></i>
                 </p>
                 <p class="Pwdtxt">
                 	<input type="password" id="password" placeholder="请输入密码" class="logintxt">
                 	<i class="chacha2 cha"><img src="/Merchant/Public/Admin/images//cancel_ico.png"></i>
                 </p>
                 <p class="ts"><span id="errMsg">*帐号或密码错误,请重新输入</span></p>
                 <p class="loginbtn"><a href="javascript:void(0);" id="loginBut">登录</a></p>
            </div>
       </div>
  </div>
  <div class="logoinfoot">
  	   <p>© 2018-2021 XUPAKO 版权所有,并保留所有权利&nbsp;&nbsp;Email:[email protected]</p>
       <p style="margin-top:10px;"></p>
  </div>
  
<script type="text/javascript">
$(function(){
	$('.cha').click(function(){
	  $(this).siblings('input').val("");
	});
	
	//登陆
	$("#loginBut").click(function(){
		var username = $("#username").val();	
		var password = $("#password").val();
		username = $.trim(username);
		password = $.trim(password);
	    //console.log(username);	
		//判断参数
		var reg = /^[A-Za-z0-9()\u4e00-\u9fa5]{1,18}$/;
		if(!reg.test(username)){
			errMsg(-1, '*账号错误,请核对')
			return false;
		}
		var reg = /^[A-Za-z0-9]+$/;
		if(!reg.test(password)){
			errMsg(-2, '*密码错误,请核对')
			return false;
		}
		//提交表单
		$.post("/merchant.php/Login/login", {username:username, password:password}, success, 'json');
		return false;
		//判断返回接口
		function success(result){
			var data=eval(result);
			if(data[0]>0){
				//成功
				window.location.href='/merchant.php/Index/index';
			} else {
				//失败
				errMsg(data[0], data[1]);
			}
		}
		//错误提示控制
		function errMsg(errCode, msg){
			if(errCode == -1){
				$("#username").parent().removeClass('Usertxt').addClass('errorUser');
				$("#username").next().show();
				$("#errMsg").text(msg).show();
			}else if(errCode == -2){
				$("#password").parent().removeClass('Pwdtxt').addClass('errorPwd');
				$("#password").next().show();
				$("#errMsg").text(msg).show();
			}else if(errCode == -3){
				$("#errMsg").text(msg).show();
			}
		}
	});
})
    
</script>
</body>
</html>                               

Whois info of domain

Domain Name: UUDCS.COM
Registry Domain ID: 2725497055_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://wanwang.aliyun.com
Updated Date: 2024-09-11T08:37:54Z
Creation Date: 2022-09-15T16:31:55Z
Registry Expiry Date: 2025-09-15T16:31:55Z
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: DNS17.HICHINA.COM
Name Server: DNS18.HICHINA.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-10T14:20:47Z <<<
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