Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - td189.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sat, 31 May 2025 01:52:40 GMT
Server: Apache
Vary: User-Agent,Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

HTTP Kodu 200 OK

200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: td189.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">
<title>数学189网</title>
<style>
.字样30{font-family: 'Times New Roman','宋体';font-size:30px;white-space:nowrap;}
.字样20{font-family: 'Times New Roman','宋体';font-size:20px;white-space:nowrap;}
/*.边框 { border: 1px solid black;}*/
</style>
</head>
<body>

<h5 style="position:absolute;left:50px;top:30px;">数学189网</h5>
<a href="数学教材/数学教材.php"class="边框 字样30" style="position:absolute;left:200px;top:200px;">数学教材</a>
<a href="数学符号.php"class="边框 字样30" style="position:absolute;left:600px;top:200px;">数学符号</a>
<a href="计算器/计算器.php"class="边框 字样30" style="position:absolute;left:800px;top:200px;">计算器</a>


<a href="关于本网站.php"class="边框 字样20" style="position:absolute;left:200px;top:660px;">关于本网站</a>
<a href="联系本网站.php"class="边框 字样20" style="position:absolute;left:400px;top:660px;">联系本网站</a>
<a href="法律声明.php"class="边框 字样20" style="position:absolute;left:600px;top:660px;">法律声明</a>
<a href="网站管理员/网站管理员.php" class="边框 字样20" style="position:absolute;left:800px;top:660px;">网站管理员</a>

<div class="边框 字样20" style="position:absolute;left:200px;top:700px;">工信部备案号:</div>
<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank" 
class="边框 字样20" style="position:absolute;left:360px;top:700px;">湘ICP备16021556号</a>
<div class="边框 字样20" style="position:absolute;left:650px;top:700px;">公安部备案号:</div>
<img src="备案图片.png"class="边框"style="position:absolute;left:790px;top:702px;"/>
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=43010402000261" target="_blank" 
class="边框 字样20" style="position:absolute;left:825px;top:700px; color:#939393;">湘公网安备 43010402000261号</a>
<div class="边框" style="position:absolute;left:0px;top:700px;">&#160;&#160;</div>

<script>
document.oncontextmenu=function(){return false}//屏蔽右键菜单
document.onpaste=function(){return false}//屏蔽粘贴
document.oncopy=function(){return false}//屏蔽复制
document.oncut=function(){return false}//屏蔽剪切
document.onselectstart=function(){return false}//屏蔽选择
</script>
<!--
<div >
<p>
<span> 
<img/>
<a></a>
1440,900
<a href="数学目录/数学目录.php"class="边框 字样30" style="position:absolute;left:400px;top:200px;">数学概要</a>

<a href="物理概要/物理概要.php"class="边框 字样30" style="position:absolute;left:200px;top:300px;">物理概要</a>


<a href="计算机概要/计算机概要.php"class="边框 字样30" style="position:absolute;left:200px;top:400px;">计算机概要</a>
<a href="经济概要/经济概要.php"class="边框 字样30" style="position:absolute;left:200px;top:500px;">经济概要</a>

<div class="边框 字样20" style="position:absolute;left:50px;top:30px;">数学189网</div>

<--?php  
$当天日期 = date('Y-m-d');  

$访问数量文件 = $当天日期.'_访问数量.txt';

if (!file_exists($访问数量文件)) {file_put_contents($访问数量文件, '0');}//如果文件不存在,则初始化访问量为0

$访问数量 = (int) file_get_contents($访问数量文件);  //读取当前的访问量

$访问数量++;  //增加访问量

file_put_contents($访问数量文件, $访问数量);//把访问数量添加到文件中


$IP列表文件 = $当天日期.'_IP列表.txt';//文件的路径,用于存储IP地址和访问量

$访问者IP = $_SERVER['REMOTE_ADDR'];  //获取访问者的IP地址

file_put_contents($IP列表文件, $访问者IP .',', FILE_APPEND);  //把IP地址添加到文件中,用逗号连接每个IP

删除前一天的访问文件();  // 删除前一天的访问量文件和IP列表文件  

  
function 删除前一天的访问文件() {
    $前一天日期 = date('Y-m-d', strtotime('-1 day'));// 获取前一天的日期

    $前一天的访问数量文件 = $前一天日期 . '_访问数量.txt';

    $前一天的IP列表文件 = $前一天日期 . '_IP列表.txt';

    if (file_exists($前一天的访问数量文件)) {unlink($前一天的访问数量文件);}// 删除前一天的访问量文件
  
    if (file_exists($前一天的IP列表文件)) {unlink($前一天的IP列表文件);}// 删除前一天的IP列表文件
}
?>
-->
</body>
</html>                               

Alan adının whois bilgisi

Domain Name: TD189.COM
Registry Domain ID: 2081795481_DOMAIN_COM-VRSN
Registrar WHOIS Server: grs-whois.hichina.com
Registrar URL: http://www.net.cn
Updated Date: 2024-11-14T02:18:48Z
Creation Date: 2016-12-14T13:43:07Z
Registry Expiry Date: 2025-12-14T13:43:07Z
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-31T01:52:33Z <<<
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