Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - dpbwg.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx
Date: Sun, 04 May 2025 01:55:07 GMT
Content-Type: text/html
Content-Length: 14108
Last-Modified: Mon, 28 Apr 2025 05:39:01 GMT
Connection: keep-alive
Vary: Accept-Encoding
ETag: "680f1475-371c"
Accept-Ranges: bytes

HTTP Code 200 OK

200 status code 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: dpbwg.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>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://dpbwg.com/museum-banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 2rem 0;
            text-align: center;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .logo {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .slogan {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        nav {
            background-color: #8B0000;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        nav li {
            margin: 0 1.5rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #FFD700;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        section {
            margin-bottom: 3rem;
            background-color: white;
            padding: 2rem;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        h1, h2, h3 {
            color: #8B0000;
            margin-bottom: 1rem;
        }
        
        h2 {
            border-bottom: 2px solid #8B0000;
            padding-bottom: 0.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        
        .gallery img:hover {
            transform: scale(1.03);
        }
        
        .exhibition-item {
            display: flex;
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        
        .exhibition-img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 1.5rem;
        }
        
        .info-box {
            background-color: #f9f9f9;
            border-left: 4px solid #8B0000;
            padding: 1rem;
            margin: 1.5rem 0;
        }
        
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        
        .contact-info {
            display: flex;
            justify-content: space-around;
            margin-top: 1.5rem;
        }
        
        .btn {
            display: inline-block;
            background-color: #8B0000;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
            margin-top: 1rem;
        }
        
        .btn:hover {
            background-color: #A52A2A;
        }
        
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav li {
                margin: 0.5rem 0;
            }
            
            .exhibition-item {
                flex-direction: column;
            }
            
            .exhibition-img {
                width: 100%;
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .contact-info {
                flex-direction: column;
            }
            
            .contact-info div {
                margin-bottom: 1rem;
            }
        }
    </style>
</head>
<body>
    <header>
        <div class="logo">东平博物馆</div>
        <div class="slogan">探索历史长河,感受文化魅力</div>
    </header>
    
    <nav>
        <ul>
            <li><a href="#about">博物馆简介</a></li>
            <li><a href="#exhibitions">展览与藏品</a></li>
            <li><a href="#visit">参观指南</a></li>
            <li><a href="#events">活动与教育</a></li>
            <li><a href="#contact">联系我们</a></li>
        </ul>
    </nav>
    
    <div class="container">
        <section id="about">
            <h1>欢迎来到东平博物馆</h1>
            <p>东平博物馆坐落于山东省东平县,是一座集收藏、研究、展示、教育于一体的综合性博物馆。博物馆建筑融合了传统与现代设计元素,占地面积约2万平方米,展陈面积8000平方米。</p>
            
            <div class="info-box">
                <h3>博物馆使命</h3>
                <p>东平博物馆致力于收集、保护和研究东平及周边地区的历史文化遗产,通过展览和教育项目向公众传播历史文化知识,促进文化交流与传承。</p>
            </div>
            
            <h2>历史沿革</h2>
            <p>东平博物馆始建于1985年,最初为县级文物管理所。2008年,为适应文化事业发展需要,东平县政府决定扩建并升级为综合性博物馆。新馆于2012年建成开放,成为东平县重要的文化地标。</p>
            
            <h2>建筑特色</h2>
            <p>博物馆建筑由著名建筑师设计,外观融合了东平传统建筑元素与现代建筑风格。主体建筑呈"鼎"字形布局,象征着东平悠久的历史文化底蕴。馆内设有中央大厅、常设展厅、临时展厅、文物库房、学术报告厅等功能区域。</p>
            
            <div class="gallery">
                <img src="https://dpbwg.com/museum-building1.jpg" alt="东平博物馆外观">
                <img src="https://dpbwg.com/museum-building2.jpg" alt="博物馆大厅">
                <img src="https://dpbwg.com/museum-building3.jpg" alt="博物馆内部">
            </div>
        </section>
        
        <section id="exhibitions">
            <h2>常设展览</h2>
            
            <div class="exhibition-item">
                <img class="exhibition-img" src="https://dpbwg.com/exhibition1.jpg" alt="东平历史文化展">
                <div>
                    <h3>东平历史文化展</h3>
                    <p>本展览通过丰富的文物、图片和多媒体展示,系统介绍了东平从史前时期到近代的历史发展脉络。重点展出了东平地区出土的新石器时代陶器、青铜器、汉代画像石等珍贵文物。</p>
                    <p><strong>展览地点:</strong>一楼东展厅</p>
                    <p><strong>推荐参观时间:</strong>60-90分钟</p>
                </div>
            </div>
            
            <div class="exhibition-item">
                <img class="exhibition-img" src="https://dpbwg.com/exhibition2.jpg" alt="东平民俗文化展">
                <div>
                    <h3>东平民俗文化展</h3>
                    <p>展示东平地区丰富多彩的民间文化,包括传统手工艺、民间艺术、节庆习俗等。展览通过场景复原、实物展示和互动体验,让观众深入了解东平人民的传统生活方式。</p>
                    <p><strong>展览地点:</strong>二楼西展厅</p>
                    <p><strong>推荐参观时间:</strong>45-60分钟</p>
                </div>
            </div>
            
            <h2>特色藏品</h2>
            <p>东平博物馆馆藏文物超过5万件,其中国家一级文物32件,二级文物156件,三级文物1200余件。以下是部分镇馆之宝:</p>
            
            <div class="gallery">
                <img src="https://dpbwg.com/treasure1.jpg" alt="汉代青铜鼎">
                <img src="https://dpbwg.com/treasure2.jpg" alt="唐代三彩马">
                <img src="https://dpbwg.com/treasure3.jpg" alt="宋代青瓷">
                <img src="https://dpbwg.com/treasure4.jpg" alt="明代书画">
                <img src="https://dpbwg.com/treasure5.jpg" alt="清代服饰">
                <img src="https://dpbwg.com/treasure6.jpg" alt="民国文献">
            </div>
            
            <a href="#" class="btn">查看全部藏品</a>
        </section>
        
        <section id="visit">
            <h2>参观指南</h2>
            
            <div class="info-box">
                <h3>开放时间</h3>
                <p><strong>周二至周日:</strong>9:00-17:00(16:30停止入馆)</p>
                <p><strong>周一:</strong>闭馆(法定节假日除外)</p>
                <p><strong>节假日:</strong>另行通知</p>
            </div>
            
            <h3>门票信息</h3>
            <p><strong>普通票:</strong>30元/人</p>
            <p><strong>优惠票:</strong>15元/人(学生、60岁以上老人凭有效证件)</p>
            <p><strong>免费政策:</strong>6岁以下儿童、残疾人、现役军人、博物馆协会会员等凭有效证件免费参观</p>
            <p><strong>团体票:</strong>20人以上团体可享受8折优惠,需提前预约</p>
            
            <h3>交通指南</h3>
            <p><strong>地址:</strong>山东省东平县文化路88号</p>
            <p><strong>公共交通:</strong>乘坐1路、3路、5路公交车至"博物馆站"下车</p>
            <p><strong>自驾车:</strong>博物馆设有地下停车场,可停放200辆车</p>
            
            <h3>参观须知</h3>
            <ul>
                <li>请勿触摸展品和展柜</li>
                <li>请勿在展厅内饮食</li>
                <li>请勿使用闪光灯拍照</li>
                <li>请保持安静,手机调至静音</li>
                <li>大件行李请寄存</li>
            </ul>
            
            
        </section>
        
        <section id="events">
            <h2>活动与教育</h2>
            
            <h3>近期活动</h3>
            <div class="exhibition-item">
                <img class="exhibition-img" src="https://dpbwg.com/event1.jpg" alt="文物修复体验">
                <div>
                    <h4>文物修复体验日</h4>
                    <p><strong>时间:</strong>每月第三个周六 14:00-16:00</p>
                    <p><strong>地点:</strong>博物馆教育活动室</p>
                    <p>由专业文物修复师带领,体验文物修复的基本流程和技术,适合10岁以上观众参与。</p>
                    
                </div>
            </div>
            
            <div class="exhibition-item">
                <img class="exhibition-img" src="https://dpbwg.com/event2.jpg" alt="历史文化讲座">
                <div>
                    <h4>东平历史文化系列讲座</h4>
                    <p><strong>时间:</strong>每周六 10:00-11:30</p>
                    <p><strong>地点:</strong>博物馆学术报告厅</p>
                    <p>邀请知名历史学者、考古专家讲述东平及周边地区的历史文化故事。</p>
                    
                </div>
            </div>
            
            <h3>教育项目</h3>
            <p>东平博物馆为不同年龄段观众设计了丰富的教育项目:</p>
            <ul>
                <li><strong>小小讲解员培训:</strong>面向8-12岁儿童,培养他们对历史文化的兴趣和表达能力</li>
                <li><strong>中学生历史文化实践课:</strong>与学校合作开展的课外实践活动</li>
                <li><strong>银龄文化课堂:</strong>为老年人设计的文化休闲活动</li>
                <li><strong>教师培训工作坊:</strong>帮助教师将博物馆资源融入课堂教学</li>
            </ul>
        </section>
        
        <section id="contact">
            <h2>联系我们</h2>
            
            <div class="contact-info">
                <div>
                    <h3>联系方式</h3>
                    <p><strong>电话:</strong>0538-2092099</p>
                    <p><strong>邮箱:</strong>[email protected]</p>
                    <p><strong>传真:</strong>0538-2092099</p>
                </div>
                
                <div>
                    <h3>社交媒体</h3>
                    <p><strong>微信公众号:</strong>东平博物馆</p>
                    <p><strong>微博:</strong>@东平博物馆</p>
                    <p><strong>抖音:</strong>东平县文化艺术中心</p>
                </div>
                
                <div>
                </div>
            </div>
        </section>
    </div>
    
    <footer>
        <p>© 2023 东平博物馆 版权所有</p>
        <p>鲁ICP备2023006628号-1</p>
        <p>技术支持:东平县文化旅游局</p>
    </footer>
</body>
</html>                               

Whois info of domain

Domain Name: DPBWG.COM
Registry Domain ID: 2761672316_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gname.com
Registrar URL: http://www.gname.com
Updated Date: 2025-04-28T05:11:13Z
Creation Date: 2023-02-28T07:22:22Z
Registry Expiry Date: 2027-02-28T07:22:22Z
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: NS1.JULYDNS.COM
Name Server: NS2.JULYDNS.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-04T01:54:58Z <<<
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