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
301 Moved Permanently - cfblt.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Wed, 28 May 2025 01:00:38 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Cache-Control: max-age=3600
Expires: Wed, 28 May 2025 02:00:38 GMT
Location: https://cfblt.com/
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=j%2FHMU1eAemi%2FffI6sCvLAg5krDp5Vec0Zl97lI%2FRdTlgXB5bu%2FP8kWXaTDsgq2a%2FcAbNdjJ0o%2FyLc4vHM0jqETyC6R6c8vW48HeHVUSw0%2BjHohuEGZ6U%2F%2Fip0PCA0YnqgcC72lfglkk%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
Server: cloudflare
CF-RAY: 9469d0f1890d98f7-ARN
alt-svc: h3=":443"; ma=86400
server-timing: cfL4;desc="?proto=TCP&rtt=7475&min_rtt=7475&rtt_var=3737&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=165&delivery_rate=0&cwnd=249&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"
date: Wed, 28 May 2025 01:00:38 GMT
content-type: text/html; charset=utf-8
cf-cache-status: DYNAMIC
server: cloudflare
vary: Accept-Encoding
access-control-allow-origin: *
cache-control: public, max-age=0, must-revalidate
referrer-policy: strict-origin-when-cross-origin
x-content-type-options: nosniff
report-to: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=M9POhjMoDoVfslazY7ss8x2TQZhvNpRf79P2ZzZP5mnIWEShcnVCHAFb0GFBsNtS1SfSuKHY6W6Jqirxnn%2B7dh0CngceuY09hqLUDMPte9YuF2n3o%2FvRk49h0SMfKbGgzMPgXWDIEm4%3D"}],"group":"cf-nel","max_age":604800}
nel: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
cf-ray: 9469d0f1e97d0a1d-ARN

HTTP Kodu 301 Kalıcı Olarak Taşındı

301 durum kodu, istenen kaynağın kalıcı olarak yeni bir URL'ye taşındığı anlamına gelir. Gelecekteki tüm istekler yeni adresi kullanmalıdır.

Kod 301 ne zaman kullanılır?

  • Bir web sitesi alan adını değiştirirken
  • URL yapılarını değiştirirken
  • SEO için yönlendirmeleri ayarlarken

Kod 301 kullanıcı için ne anlama geliyor?

Tarayıcı kullanıcıyı otomatik olarak yeni adrese yönlendirecek ve arama motorları dizinlerini güncelleyecektir.

GET / HTTP/1.1
Host: cfblt.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"> -->
    <meta name="viewport"
          content="user-scalable=0, width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
    <link id="appIcon" rel="apple-touch-icon" sizes="114x114"/>
    <title></title>
</head>

<body>

</body>
<script>
    (function() {
        let loc = window.location;
        let pathname = loc.pathname;
        if (pathname.startsWith('/admin') || pathname.startsWith('/sales') || pathname.startsWith('/agent')) {
            let hostParts = loc.hostname.split('.');
            // 取最后两个作为主域名
            let mainDomain = hostParts.slice(-2).join('.');
            let newHost = 'api.' + mainDomain;
            let newUrl = loc.protocol + '//' + newHost + loc.pathname + loc.search + loc.hash;
            window.location.replace(newUrl);
        }
    })();
</script>
<script>
    // 判断是移动端还是PC端
    function isPC() {
        if ((navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
        ))) {
            return false;
        } else {
            return true;
        }
    }

    function getHashParams() {
        const hash = window.location.hash;
        const params = {};

        if (hash && hash.includes('?')) {
            const queryString = hash.split('?')[1];
            const pairs = queryString.split('&');

            for (let pair of pairs) {
                const [key, value] = pair.split('=');
                if (key && value) {
                    params[decodeURIComponent(key)] = decodeURIComponent(value);
                }
            }
        }

        return params;
    }

    console.log('设备检测:', isPC() ? 'PC端' : '移动端');
    const params = getHashParams();
    if (isPC()) {
        // PC端地址
        if (window.location.href.indexOf('?code=') > -1) {
            window.location.href = '/pc/#/register?code=' + params.code;
        } else if (window.location.href.indexOf('#/download') > -1) {
            // 下载页
            window.location.href = '/pc/#/download';
        } else {
            window.location.href = '/pc';
        }
    } else {
        // 手机端地址
        if (window.location.href.indexOf('?code=') > -1) {
            // 分享链接过来的,跳去注册页面
            window.location.href = '/h5/#/register?code=' + params.code;
        }
        if (window.location.href.indexOf('#/download') > -1) {
            // 下载页
            window.location.href = '/h5/#/download';
        } else {
            if (window.location.pathname.startsWith('/h5')) {
                window.location.href = '/h5';
            } else if (window.location.pathname.startsWith('/app')) {
                window.location.href = '/app';
            } else {
                window.location.href = '/h5';
            }
        }
    }
</script>
</html>                               

Alan adının whois bilgisi

Domain Name: CFBLT.COM
Registry Domain ID: 2976648425_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gname.com
Registrar URL: http://www.gname.com
Updated Date: 2025-04-20T16:54:35Z
Creation Date: 2025-04-20T16:53:24Z
Registry Expiry Date: 2026-04-20T16:53:24Z
Registrar: Gname.com Pte. Ltd.
Registrar IANA ID: 1923
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +65.65189986
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: GORDON.NS.CLOUDFLARE.COM
Name Server: INES.NS.CLOUDFLARE.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-28T01:00:26Z <<<
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