Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - fpwap.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 11 May 2025 01:13:09 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Location: http://www.fpwap.com/
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=B%2FSxJtcBGKEgEV%2Bb8VR4UTsE9Pby%2B5UNCx3nb8vWs0woTZaclWkR5gzAx4r%2BOVcDjuJbJsLXRyflqFBtc2j2eFfNq08CfyR8Pn4F8hWIAhJZywVIlYFUIOgyDXdTJxykinLTcNMuNwU%3D"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93ddcfe72f1d9915-ARN
server-timing: cfL4;desc="?proto=TCP&rtt=7460&min_rtt=7460&rtt_var=3730&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"

HTTP Code 301 Moved Permanently

301 Moved Permanently 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 - http://www.fpwap.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 11 May 2025 01:13:10 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
cf-cache-status: DYNAMIC
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=VmyJy6cCmk0dr9ZQBzjXkM1ep8GCFoD8TeOV83pu%2FGInl9XiK7mrJArWaNO%2BDU4dOk50FiS5R96imP2cyOReeRdz2YQyrqCh7ngDgsKNF61ahozCNkzjcPPJbq8Wf%2FAPl%2BlqDEjc5ESks15A"}],"group":"cf-nel","max_age":604800}
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Server: cloudflare
CF-RAY: 93ddcfeeed2e2d86-ARN
server-timing: cfL4;desc="?proto=TCP&rtt=7384&min_rtt=7384&rtt_var=3692&sent=1&recv=3&lost=0&retrans=0&sent_bytes=0&recv_bytes=169&delivery_rate=0&cwnd=242&unsent_bytes=0&cid=0000000000000000&ts=0&x=0"

HTTP Code 200 OK

200 OK 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: fpwap.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>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 顶部导航 */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2575fc;
        }
        .nav-links a {
            margin-left: 20px;
            text-decoration: none;
            color: #555;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #2575fc;
        }
        
        /* 轮播图 */
        .swiper {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .swiper-slide {
            position: relative;
            overflow: hidden;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 30px;
        }
        .slide-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        /* 关于我 */
        .about-section {
            background: white;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .about-section h2 {
            color: #2575fc;
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .about-text {
            flex: 1;
        }
        .about-text p {
            margin-bottom: 15px;
            text-align: justify;
        }
        .about-image {
            flex: 0 0 300px;
            border-radius: 8px;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 内容区块 */
        .section-title {
            text-align: center;
            margin: 40px 0 30px;
            color: #2575fc;
            font-size: 28px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        .card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .card-image {
            height: 200px;
            overflow: hidden;
        }
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        .card-content {
            padding: 20px;
        }
        .card h3 {
            color: #2575fc;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .card p {
            color: #666;
            margin-bottom: 15px;
        }
        .read-more {
            display: inline-block;
            color: #2575fc;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        .read-more:hover {
            color: #1a5cb8;
        }
        
        /* 页脚 */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0;
            border-radius: 8px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-column {
            flex: 1;
            padding: 0 15px;
        }
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #2575fc;
        }
        .footer-column p, .footer-column a {
            color: #bbb;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column a:hover {
            color: #2575fc;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .icp {
            font-size: 14px;
            margin-top: 10px;
        }
        .icp a {
            color: #2575fc;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            .about-image {
                flex: 1;
                width: 100%;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-column {
                margin-bottom: 30px;
            }
        }
    </style>
<script type="text/javascript" src="/common/js/jquery.websafe-4.9.10.min.js"></script>
</head>
<body>
    <div class="container">
        <!-- 导航栏 -->
        <nav>
            <div class="logo">我的诗和远方</div>
            <div class="nav-links">
                <a href="#">首页</a>
                <a href="#">文章</a>
                <a href="#">摄影</a>
                <a href="#">Vlog</a>
                <a href="#">关于我</a>
            </div>
        </nav>
        
        <!-- 轮播图 -->
        <div class="swiper">
            <div class="swiper-wrapper">
                <div class="swiper-slide">
                    <img src="https://images.unsplash.com/photo-1506744038136-46273834b3fb" alt="自然风光">
                    <div class="slide-content">
                        <h2>发现生活中的美好</h2>
                        <p>用镜头和文字记录每一个值得珍藏的瞬间</p>
                    </div>
                </div>
                <div class="swiper-slide">
                    <img src="https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05" alt="旅行摄影">
                    <div class="slide-content">
                        <h2>探索世界的脚步</h2>
                        <p>分享旅途中的见闻与感悟</p>
                    </div>
                </div>
                <div class="swiper-slide">
                    <img src="https://images.unsplash.com/photo-1490750967868-88aa4486c946" alt="生活日常">
                    <div class="slide-content">
                        <h2>平凡中的诗意</h2>
                        <p>在日常中发现不平凡的美</p>
                    </div>
                </div>
            </div>
            <div class="swiper-pagination"></div>
            <div class="swiper-button-prev"></div>
            <div class="swiper-button-next"></div>
        </div>
        
        <!-- 关于我 -->
        <div class="about-section">
            <h2>关于我和这个空间</h2>
            <div class="about-content">
                <div class="about-text">
                    <p>你好,我是韩双双,一个热爱生活、喜欢记录的文字工作者和摄影爱好者。这个空间是我用来分享生活点滴、旅行见闻和创作思考的地方。</p>
                    <p>从大学时代开始,我就养成了用文字和照片记录生活的习惯。这些年来,我走过了许多地方,遇见了形形色色的人,经历了各种各样的故事。这个网站就是这些珍贵记忆的载体。</p>
                    <p>在这里,你会看到我的旅行游记、摄影作品、读书笔记和生活随笔。我希望通过这些分享,能够传递我对生活的热爱,也能与志同道合的朋友们交流心得。</p>
                    <p>生活不止眼前的苟且,还有诗和远方。让我们一起在这个忙碌的世界里,寻找属于自己的诗意栖居。</p>
                </div>
                <div class="about-image">
                    <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d" alt="关于我">
                </div>
            </div>
        </div>
        
        <!-- 最新文章 -->
        <h2 class="section-title">最新文章</h2>
        <div class="content-grid">
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1455390582262-044cdead277a" alt="文章配图">
                </div>
                <div class="card-content">
                    <h3>城市漫步:发现巷弄里的老故事</h3>
                    <p>在这个快节奏的时代,我选择放慢脚步,用一天时间漫步在老城区的巷弄里。那些斑驳的墙壁、古老的建筑、街角的小店,都藏着说不完的故事...</p>
                    <a href="#" class="read-more">阅读更多 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1499750310107-5fef28a66643" alt="文章配图">
                </div>
                <div class="card-content">
                    <h3>读《瓦尔登湖》:寻找内心的宁静</h3>
                    <p>重读梭罗的《瓦尔登湖》,在这个充满噪音的世界里,我们是否还能找到属于自己的那片宁静湖泊?这本书给了我许多关于简单生活的启示...</p>
                    <a href="#" class="read-more">阅读更多 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1500382017468-9049fed747ef" alt="文章配图">
                </div>
                <div class="card-content">
                    <h3>乡村记忆:外婆家的小院</h3>
                    <p>回到儿时生活过的乡村,外婆家的小院依旧如记忆中那般亲切。那棵老梨树、石砌的围墙、木质的门槛,都承载着太多温暖的回忆...</p>
                    <a href="#" class="read-more">阅读更多 →</a>
                </div>
            </div>
        </div>
        
        <!-- 摄影作品 -->
        <h2 class="section-title">摄影作品</h2>
        <div class="content-grid">
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1472214103451-9374bd1c798e" alt="摄影作品">
                </div>
                <div class="card-content">
                    <h3>山间晨雾</h3>
                    <p>清晨五点的山间,薄雾如纱般笼罩着整片山谷。等待了两个小时,终于捕捉到第一缕阳光穿透云雾的瞬间...</p>
                    <a href="#" class="read-more">查看详情 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1501854140801-50d01698950b" alt="摄影作品">
                </div>
                <div class="card-content">
                    <h3>秋日私语</h3>
                    <p>深秋的公园,金黄的落叶铺满了小路。逆光拍摄下,每一片叶子都仿佛在诉说着季节变换的故事...</p>
                    <a href="#" class="read-more">查看详情 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1470114716159-e389f8712fda" alt="摄影作品">
                </div>
                <div class="card-content">
                    <h3>海边日落</h3>
                    <p>马尔代夫的日落时分,海水呈现出梦幻的粉紫色。使用长曝光拍摄,让海浪变得如丝绸般柔滑...</p>
                    <a href="#" class="read-more">查看详情 →</a>
                </div>
            </div>
        </div>
        
        <!-- Vlog视频 -->
        <h2 class="section-title">Vlog视频</h2>
        <div class="content-grid">
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1475739139815-3c277b1eb5f0" alt="Vlog封面">
                </div>
                <div class="card-content">
                    <h3>京都红叶季 | 古寺与枫叶的邂逅</h3>
                    <p>跟随我的镜头漫步京都的古寺,感受红叶季独有的禅意与美感。从清水寺到岚山,记录下这个千年古都最绚丽的季节...</p>
                    <a href="#" class="read-more">观看视频 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1506929562872-bb421503ef21" alt="Vlog封面">
                </div>
                <div class="card-content">
                    <h3>手冲咖啡入门指南</h3>
                    <p>从选豆、磨粉到冲泡,详细讲解手冲咖啡的每个步骤。分享我三年来积累的经验和技巧,帮助咖啡新手少走弯路...</p>
                    <a href="#" class="read-more">观看视频 →</a>
                </div>
            </div>
            <div class="card">
                <div class="card-image">
                    <img src="https://images.unsplash.com/photo-1504674900247-0877df9cc836" alt="Vlog封面">
                </div>
                <div class="card-content">
                    <h3>周末市集 | 发现手作之美</h3>
                    <p>探访城市周末手作市集,采访几位独立手工艺人,了解他们的创作故事。从陶艺到皮具,感受手工制作的温度...</p>
                    <a href="#" class="read-more">观看视频 →</a>
                </div>
            </div>
        </div>
    </div>
    
    <!-- 页脚 -->
    <footer>
        <div class="footer-content">
            <div class="footer-column">
                <h3>关于本站</h3>
                <p>"我的诗和远方"是一个分享生活美学、旅行见闻和个人创作的空间。在这里,我用文字、图片和视频记录生活中的美好瞬间。</p>
            </div>
            <div class="footer-column">
                <h3>快速链接</h3>
                <a href="#">首页</a>
                <a href="#">所有文章</a>
                <a href="#">摄影集</a>
                <a href="#">视频频道</a>
                <a href="#">关于我</a>
            </div>
            <div class="footer-column">
                <h3>联系我</h3>
                <a href="/cdn-cgi/l/email-protection#33495b525d5440525d73564b525e435f561d505c5e">邮箱:<span class="__cf_email__" data-cfemail="e69c8e878881958788a6839e878b968a83c885898b">[email&#160;protected]</span></a>
                <a href="#">微博:@韩双双的诗和远方</a>
                <a href="#">微信公众号:诗和远方</a>
            </div>
        </div>
        <div class="copyright">
            <p>© 2024 我的诗和远方 版权所有</p>
            <p class="icp">备案人:韩双双 | 网站名称:我的诗和远方 | 
                <a href="https://beian.miit.gov.cn/" target="_blank">皖ICP备2025080667号-1</a>
            </p>
        </div>
    </footer>
    
    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
    <script>
        // 初始化轮播图
        const swiper = new Swiper('.swiper', {
            loop: true,
            autoplay: {
                delay: 5000,
                disableOnInteraction: false,
            },
            pagination: {
                el: '.swiper-pagination',
                clickable: true,
            },
            navigation: {
                nextEl: '.swiper-button-next',
                prevEl: '.swiper-button-prev',
            },
        });
    </script>
</body>
</html>
                               

Whois info of domain

Domain Name: FPWAP.COM
Registry Domain ID: 1595665166_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.ename.com
Registrar URL: http://www.ename.net
Updated Date: 2025-04-08T01:16:42Z
Creation Date: 2010-05-04T13:48:32Z
Registry Expiry Date: 2028-05-04T13:48:32Z
Registrar: eName Technology Co., Ltd.
Registrar IANA ID: 1331
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 86.4000044400
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.ALIDNS.COM
Name Server: NS2.ALIDNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-11T01:13:03Z <<<
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