Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - 6da.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Wed, 14 May 2025 16:49:58 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: https://6da.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.

200 OK - https://6da.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Wed, 14 May 2025 16:49:59 GMT
Content-Type: text/html
Content-Length: 22882
Last-Modified: Fri, 03 Jan 2025 09:35:18 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "6777af56-5962"
Strict-Transport-Security: max-age=31536000
Accept-Ranges: bytes

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: 6da.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>留学生社区 - 连接全球,共创未来</title>
    
    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
    
    <!-- AOS CSS -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
    
    <!-- Hover.css -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover-min.css" rel="stylesheet">
    
    <style>
        :root {
            --primary-color: #4a90e2;
            --secondary-color: #50c878;
            --accent-color: #ff6b6b;
            --text-color: #333;
            --bg-color: #f0f8ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: -1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 2rem;
            max-width: 800px;
            width: 90%;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto 30px;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: #3a7bd5;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }

        /* Community Features Section */
        .section {
            padding: 80px 5%;
        }

        .community-features {
            background-color: #ffffff;
            text-align: center;
        }

        .community-features h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--primary-color);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-item {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            /* AOS animation */
            opacity: 0;
            transform: translateY(20px);
        }

        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature-description {
            font-size: 1rem;
            color: var(--text-color);
        }

        /* Our Goals Section */
        .our-goal-section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 20px;
            position: relative;
            perspective: 1000px;
            background-color: #f0f8ff;
        }

        .content-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            position: relative;
            /* AOS animation */
            opacity: 0;
            transform: translateY(-50px);
        }

        .goal-statement {
            font-size: 1.3rem;
            margin-bottom: 60px;
            font-weight: 300;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            /* AOS animation */
            opacity: 0;
            transform: translateY(50px);
        }

        .goal-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .goal-item {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            /* AOS animation */
            opacity: 0;
            transform: translateY(100px);
        }

        .goal-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .goal-item:hover::before {
            opacity: 1;
        }

        .goal-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .goal-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 500;
            color: var(--primary-color);
        }

        .goal-description {
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .cta-button {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 15px 30px;
            background-color: var(--accent-color);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transition: all 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Join Community Section */
        .join-community-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
            position: relative;
        }

        .app-description {
            font-size: 1.2rem;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            /* AOS animation */
            opacity: 0;
            transform: translateY(50px);
        }

        .download-options {
            display: flex;
            justify-content: center;
            gap: 100px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .download-option {
            position: relative;
            width: 300px;
            height: 600px;
            perspective: 1000px;
            /* AOS animation */
            opacity: 0;
            transform: scale(0.8);
        }

        .phone-container {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s;
            cursor: pointer;
        }

        .download-option:hover .phone-container {
            transform: rotateY(180deg);
        }

        .phone-face {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
        }

        .phone-back {
            background-color: var(--primary-color);
            color: #ffffff;
            transform: rotateY(180deg);
        }

        .phone-screen {
            width: 90%;
            height: 80%;
            background-color: #000;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .app-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .download-btn {
            padding: 10px 20px;
            font-size: 1.2rem;
            background-color: var(--accent-color);
            color: #ffffff;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Floating Objects */
        .floating-objects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-object {
            position: absolute;
            opacity: 0.6;
            font-size: 40px;
            user-select: none;
            animation: float 10s infinite alternate;
        }

        @keyframes float {
            from {
                transform: translateY(0) rotate(0deg);
            }
            to {
                transform: translateY(-20px) rotate(360deg);
            }
        }

        /* Footer Styles */
        footer {
            text-align: center;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .community-features h2, .section-title {
                font-size: 2.5rem;
            }
            .feature-title, .goal-title {
                font-size: 1.3rem;
            }
            .community-stories h3 {
                font-size: 1.7rem;
            }
            .download-options {
                flex-direction: column;
                align-items: center;
            }
            .download-option {
                width: 250px;
                height: 500px;
                margin-bottom: 30px;
            }
        }
    </style>
</head>
<body>
    <!-- Hero Section -->
    <section class="hero">
        <video class="hero-video" autoplay loop muted playsinline>
            <source src="https://newpeace.jp/assets/videos/intro_pc.mp4" type="video/mp4">
        </video>
        <div class="hero-overlay"></div>
        <div class="hero-content">
            <h1 data-aos="fade-down">留学生社区</h1>
            <p data-aos="fade-up" data-aos-delay="200">
                连接全球,共创未来。你的第二个家,让留学生活更精彩。
            </p>
            <a href="#features" class="btn hvr-grow" data-aos="zoom-in" data-aos-delay="400">探索我们的世界</a>
        </div>
        <div class="scroll-indicator">
            <svg width="40" height="40" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M12 5V19M12 19L5 12M12 19L19 12" stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
            </svg>
        </div>
    </section>

    <!-- Community Features Section -->
    <section class="section community-features" id="features">
        <h2 data-aos="fade-up">在这里,你可以...</h2>
        <div class="features-grid">
            <div class="feature-item" data-aos="fade-up" data-aos-delay="100">
                <div class="feature-icon">💬</div>
                <h3 class="feature-title">分享经验</h3>
                <p class="feature-description">与全球留学生交流,分享你的留学故事和宝贵经验</p>
            </div>
            <div class="feature-item" data-aos="fade-up" data-aos-delay="200">
                <div class="feature-icon">🤝</div>
                <h3 class="feature-title">寻找伙伴</h3>
                <p class="feature-description">结识志同道合的朋友,共同探索留学生活的精彩</p>
            </div>
            <div class="feature-item" data-aos="fade-up" data-aos-delay="300">
                <div class="feature-icon">📚</div>
                <h3 class="feature-title">学习资源</h3>
                <p class="feature-description">获取丰富的学习资料和留学技巧,助你顺利适应新环境</p>
            </div>
            <div class="feature-item" data-aos="fade-up" data-aos-delay="400">
                <div class="feature-icon">🎉</div>
                <h3 class="feature-title">参与活动</h3>
                <p class="feature-description">加入线上线下活动,拓展人脉,丰富留学生活</p>
            </div>
        </div>
    </section>

    <!-- Our Goals Section -->
    <section class="our-goal-section">
        <div class="content-container">
            <h2 class="section-title" data-aos="fade-right">我们想做的是什么</h2>
            <p class="goal-statement" data-aos="fade-up" data-aos-delay="200">
                我们致力于创建一个充满活力的在线家园,让每个留学生都能找到归属感,分享经验,互帮互助,一起成长。在这里,你可以...
            </p>
            <div class="goal-list">
                <div class="goal-item" data-aos="fade-up" data-aos-delay="100">
                    <div class="goal-icon">🤝</div>
                    <h3 class="goal-title">搭建友谊桥梁</h3>
                    <p class="goal-description">结识来自世界各地的朋友,建立跨越国界的深厚友谊。</p>
                </div>
                <div class="goal-item" data-aos="fade-up" data-aos-delay="200">
                    <div class="goal-icon">📚</div>
                    <h3 class="goal-title">分享留学经验</h3>
                    <p class="goal-description">讲述你的留学故事,同时从他人的经历中汲取宝贵经验。</p>
                </div>
                <div class="goal-item" data-aos="fade-up" data-aos-delay="300">
                    <div class="goal-icon">💡</div>
                    <h3 class="goal-title">解决实际问题</h3>
                    <p class="goal-description">集思广益,共同应对留学生活中的各种挑战。</p>
                </div>
                <div class="goal-item" data-aos="fade-up" data-aos-delay="400">
                    <div class="goal-icon">🌱</div>
                    <h3 class="goal-title">促进个人成长</h3>
                    <p class="goal-description">获取资源和机会,在学业和个人发展方面不断突破。</p>
                </div>
            </div>
            <button class="cta-button hvr-shrink" data-aos="zoom-in" data-aos-delay="500">加入我们的社区</button>
        </div>
        <div class="floating-objects">
            <!-- 示例浮动对象 -->
            <div class="floating-object" style="top: 20%; left: 10%;">🌍</div>
            <div class="floating-object" style="top: 40%; left: 70%;">✈️</div>
            <div class="floating-object" style="top: 60%; left: 30%;">📚</div>
            <div class="floating-object" style="top: 80%; left: 80%;">🎓</div>
            <div class="floating-object" style="top: 10%; left: 50%;">🗺️</div>
        </div>
    </section>

    <!-- Join Community Section -->
    <section class="join-community-section">
        <div class="content-container">
            <p class="app-description" data-aos="fade-up">
                无论你是 Android 还是 iOS 用户,现在就下载溜达 App,开启你的留学社交之旅!结识新朋友,分享经验,互帮互助,让你的留学生活更精彩。
            </p>
            <div class="download-options">
                <!-- Android Download Option -->
                <div class="download-option" data-aos="fade-up" data-aos-delay="100">
                    <div class="phone-container">
                        <!-- Phone Front -->
                        <div class="phone-face phone-front">
                            <div class="phone-screen">
                                <!-- 替换为Android应用图片 -->
                                <img src="./ass/anzhuo.png" alt="溜达 Android 版" class="app-image">
                            </div>
                        </div>
                        <!-- Phone Back -->
                        <div class="phone-face phone-back">
                            <h3>下载 Android 版</h3>
                            <p>扫描二维码或点击下载</p>
                            <!-- 如果有二维码,可以在这里添加 -->
                            <button class="download-btn">下载 APK</button>
                        </div>
                    </div>
                </div>
                <!-- iOS Download Option -->
                <div class="download-option" data-aos="fade-up" data-aos-delay="200">
                    <div class="phone-container">
                        <!-- Phone Front -->
                        <div class="phone-face phone-front">
                            <div class="phone-screen">
                                <img src="./ass/ios.png" alt="溜达 iOS 版" class="app-image">
                            </div>
                        </div>
                        <!-- Phone Back -->
                        <div class="phone-face phone-back">
                            <h3>下载 iOS 版</h3>
                            <p>扫描二维码或点击下载</p>
                            <button class="download-btn">App Store</button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="floating-objects">
            <!-- 示例浮动对象 -->
            <div class="floating-object" style="top: 15%; left: 25%;">📱</div>
            <div class="floating-object" style="top: 35%; left: 60%;">🔄</div>
            <div class="floating-object" style="top: 55%; left: 20%;">💾</div>
            <div class="floating-object" style="top: 75%; left: 75%;">📲</div>
            <div class="floating-object" style="top: 5%; left: 40%;">🔗</div>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <p>&copy; 2025 溜达留学生社区. 保留所有权利。 <a href="https://beian.miit.gov.cn/" target="_blank">沪ICP备2022034524号-2</a></p>
    </footer>
    
    <!-- AOS JS -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
    
    <!-- GSAP -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/ScrollTrigger.min.js"></script>
    
    <!-- Lottie JS (如果需要) -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.4/lottie.min.js"></script>
    
    <script>
        // 初始化 AOS
        AOS.init({
            duration: 1000,
            once: true
        });

        // 平滑滚动
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                document.querySelector(this.getAttribute('href')).scrollIntoView({
                    behavior: 'smooth'
                });
            });
        });

        // GSAP 动画
        gsap.registerPlugin(ScrollTrigger);

        // 浮动对象动画
        const floatingObjects = document.querySelectorAll('.floating-object');
        floatingObjects.forEach(obj => {
            gsap.to(obj, {
                y: -20,
                duration: 5,
                ease: 'sine.inOut',
                yoyo: true,
                repeat: -1
            });
        });

    </script>
</body>
</html>                               

Whois info of domain

Domain Name: 6DA.COM
Registry Domain ID: 98785253_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dnspod.cn
Registrar URL: http://www.dnspod.cn
Updated Date: 2024-11-12T05:40:02Z
Creation Date: 2003-06-05T14:34:25Z
Registry Expiry Date: 2026-06-05T14:34:25Z
Registrar: DNSPod, Inc.
Registrar IANA ID: 1697
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.4009100100
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: LOCATE.DNSPOD.NET
Name Server: WHITE.DNSPOD.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-14T16:49:39Z <<<
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