Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Robots.txt настроен корректно. Размер файла: 22086 байт. Загружен за: 1сек.
Проверяемая страница не запрещена в robots.txt.
Показать содержимое robots.txt
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="renderer" content="webkit">
<link type="text/css" rel="stylesheet" href="/r/toen/static/pc/css/base.css"/>
<link type="text/css" rel="stylesheet" href="/r/toen/static/pc/css/common.css"/>
<link type="text/css" rel="stylesheet" href="/r/toen/static/pc/css/page.css"/>
<link rel="icon" type="image/png" href="/r/toen/static/pc/favicon.png">
<script type="text/javascript" src="/r/toen/static/pc/js/jquery_min.js"></script>
<script type="text/javascript" src="/r/toen/static/pc/js/jquery-migrate_min.js"></script>
<script type="text/javascript" src="/r/toen/static/pc/js/zangli.js"></script>
<script type="text/javascript" src="/r/toen/static/pc/js/cicc-plug-ins.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-792908780"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-792908780');
</script>
<script>
gtag('event', 'conversion', {'send_to': 'AW-792908780/ILbKCOj1r5wZEOyni_oC'});
</script><title>Tibet Online</title>
<link type="text/css" rel="stylesheet" href="/r/toen/static/pc/css/swiper_min.css"/>
<link type="text/css" rel="stylesheet" href="/r/toen/static/pc/css/index.css"/>
<script type="text/javascript" src="/r/toen/static/pc/js/swiper_jquery_min.js"></script>
<script>
$(function(){
checkEndTime();
function checkEndTime(){
var myDate=new Date();
//指定日期格式化
var startTime = "20260214";//起始日期的前一天
var overTime = "20260224";//截止日期的第二天
var year = myDate.getFullYear(); //获取当前年
var mon = myDate.getMonth() + 1 +''; //获取当前月
var odate = myDate.getDate() +''; //获取当前日
//var hour = myDate.getHours() +'';
//月
if(mon.length ==1){
mon = '0' + mon;
}
//日
if(odate.length ==1){
odate = '0' + odate;
}
//时
// if(hour.length ==1){
// hour = '0' + hour;
// }
var nowDate = ''+year+mon+odate;//时 +hour
//起止
if(startTime<nowDate && overTime>nowDate){
newsben();
return true;
}else{
return false;
}
//贺图
function newsben(){
$("body").addClass("hetu");
//以下内容在挂顶贺图时需要隐藏
// var int=self.setInterval(function(){
// $('.hetu .hetuFull').fadeOut();
// clearInterval(int);
// },4000);
};
};
})
</script>
<style>
/* 顶贺图 */
.hetu .hetuFull{background:url(/r/toen/static/pc/images/hetu20260206EN.jpg) no-repeat top center;padding-top:600px;}
@media (max-width:1920px){
.hetu .hetuFull{padding-top:29vw;background-size:auto 29vw;}
}
/* 全屏贺图 */
/* .hetu .hetuFull{width:100vw;height:100vh;background:url(/r/toen/static/pc/images/hetu20250926EN.jpg) no-repeat center;background-size:cover;position:fixed;left:0;top:0;z-index:99;margin:0;} */
</style>
</head>
<body>
<div class="hetuFull"></div>
<!--header-->
<div class="header">
<div class="w">
<div class="LS"><img class="logo" src="/r/toen/static/pc/images/logo.png"></div>
<div class="other">
<div class="date">
<span id="dateSpan"></span>
<a href="https://www.tibetol.cn/" target="_blank"></a>
</div>
<div class="search">
<input class="inputBox" id="keyword" type="text" name="keyword" autocomplete="off">
<input class="submit" id="keywords" type="button" value="" target="_blank" onclick="javascript:search();">
</div>
</div>
</div>
<div class="nav">
<div class="w navList">
<a href="/">HOME</a>
<a href="/latest/index.html">LATEST</a>
<a href="/pic_vid/index.html">PICS&VIDEOS</a>
<a href="/aid/index.html">AID</a>
<a href="/edu/index.html">EDUCATION</a>
<a href="/opinion/index.html">OPINIONS</a>
<a href="/news_trav/index.html">TRAVEL</a>
<a href="/news_culture/index.html">CULTURE</a>
<a href="/encyclopedia/index.html">XIZANGPEDIA</a>
</div>
</div>
</div>
<!--时、分、秒-->
<!--<script type="text/javascript">tick()</script>-->
<script type="text/javascript">
window.onload=function(){
getDate();
}
//公历年日期
function getDate(){
var weekString = new Array("Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday")
var time=new Date();
var year=time.getFullYear();
var month=time.getMonth();
var date=time.getDate();
monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
var dateSpan=weekString[time.getDay()]+", "+monName[month]+" "+date+", "+year;
$('#dateSpan').html(dateSpan);
}
</script>
<script>
//搜索
$(document).keydown(function(event){
if(event.keyCode == '13'){
if ($('#keyword').is(':focus')) {
search();
};
if ($('#keyword2').is(':focus')) {
search2();
};
};
});
function search(){
var keyword = $("#keyword").val();
keyword = keyword.replace(/(^\s*)|(\s*$)/g, "");
if(keyword!="" && keyword!="Search"){
window.location.href="/search-list.html?keyword="+keyword;
}
}
$(function(){
$("#keyword").val('Search');
$("#keyword").blur(function(){
if(this.value==''){
this.value='Search'
}
})
$("#keyword").focus(function(){
if(this.value=='Search'){
this.value='';
}
})
})
</script><div>
<div class="w main index">
<div class="HN">
<!--翻图-->
<div class="swiper-container box hot" id="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="/2026/08/17/58edb88506484b84ba67ae965a36d37f.html" target="_blank">
<img src="/r/toen/images/cms/content/2026/08/6a7fd730a310738531590e17.jpeg">
<h4>A gallop across the plateau</h4>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/08/17/7cca96dd8dd34d4e951e72347cafcf3c.html" target="_blank">
<img src="/r/toen/images/cms/content/2026/08/2026081604fbdbefadfd45a9b17132248adcaff6_XxjwshE000017_20260816_CBMFN0A001.jpg">
<h4>Legacy of love -- A family's 55-year dedication to red deer reserve in Xizang</h4>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/07/27/eadfddf6019c44b1abd6f2274a279a29.html" target="_blank">
<img src="/r/toen/images/cms/content/2026/07/FOREIGN1784857057684FSN0J7I46L.jpg">
<h4>Traditional Reba Dance in SW China's Xizang beats its way onto bigger stage</h4>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/07/24/47c34b533bd441c6b063d45029f8b391.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/07/20260722fb97d5d6217c48e8a48309fba8dc58c9_XxjwshE000022_20260722_CBMFN0A003.JPG">
<h4>Letter from Lhasa: The calf in the current</h4>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/07/16/ee83a5b6e43a42b29102ba2ab85272c3.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/07/FOREIGN1784082023048TO1YLU93RB.jpg">
<h4>Pairing assistance brings industries, jobs to remote area in SW China's Xizang</h4>
</a>
</div>
</div>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-white"></div>
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
<!--LATEST-->
<div class="box latest">
<h3><a href="/latest/index.html">LATEST</a></h3>
<ul>
<a href="/2026/08/20/e34f5047d9934792a550df148a29d439.html" target="_blank">Xizang glacier earns Guinness World Record</a>
<a href="/2026/08/20/f1522a2059b546b6ae38e0d4be0c4b6f.html" target="_blank">China to expand education support for people with disabilities in Xizang</a>
<a href="/2026/08/19/e0ddf530f20946898f6869582ff739e4.html" target="_blank">Disabled people's art troupe dazzles Xizang with inclusive show</a>
<a href="/2026/08/18/5883e006d2254e07a3e96ba9a8638727.html" target="_blank">Tourists find simple pleasures at Xizang post office</a>
<a href="/2026/08/18/cf25acf47a7c4049bd088cca53a2a537.html" target="_blank">Letter from Lhasa: A taste of Shoton Festival that brings people together, boosts tourism</a>
<a href="/2026/08/17/ffdc29dbc8084863b58add2d9ffdc8b8.html" target="_blank">Xizang barley farmers take advantage of new technology</a>
</ul>
</div>
</div>
<div class="TC">
<!--TRAVEL-->
<div class="box travel">
<h3><a href="/news_trav/index.html">TRAVEL</a></h3>
<ul>
<a href="/2026/07/23/af60e3d4a6e6470790f8069dce08a1ba.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/07/1%20%E6%8B%B7%E8%B4%9D(1).jpg">
<p>
Landscapes from the top
</p>
</a>
<a href="/2026/01/29/4349e8aa39af40569e130dd5903d2fac.html" target="_blank">
Xizang's cultural, tourism indicators see robust growth in 2025
</a>
<a href="/2026/07/01/3b7fbef134a14f5fb4c13badb8be4496.html" target="_blank">
Transit corridor becomes unmissable tourism route
</a>
<a href="/2026/04/29/c062e1d89573470698c64396b40283c7.html" target="_blank">
Living with nature in Metog
</a>
<a href="/2026/04/13/c013d515712340369dc0906e26923a40.html" target="_blank">
Namtso Lake: As the heavenly lake awakens, beauty brings prosperity
</a>
</ul>
</div>
<!--CULTURE-->
<div class="box culture">
<h3><a href="/news_culture/index.html">CULTURE</a></h3>
<ul>
<a href="/2026/08/17/62664ef0eebd4afcb4bee5fdec4ecd9b.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/1.jpeg">
<p>
Listen a little close
</p>
</a>
<a href="/2026/07/08/c4bb8d82ec844a88acdc9126c9036c0b.html" target="_blank">
Protectors pass torch to future generations
</a>
<a href="/2026/07/03/35c1c0da5f714acab33866f01182505e.html" target="_blank">
Young woman modernizes pulu weaving in SW China's Xizang
</a>
<a href="/2026/06/29/5fd88f8dcdea4375861c5170d48ee614.html" target="_blank">
Yak yogurt gains increasing popularity
</a>
<a href="/2026/06/24/ef6604f34d114ef0841668c7fedbf9ef.html" target="_blank">
Innovation breathes new life into ancient cultural heritage in SW China's Xizang
</a>
</ul>
</div>
</div>
<!--推荐专题-->
<!--<div class="swiper-container recommend" id="swiper-container_S">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="/2026/08/20/e34f5047d9934792a550df148a29d439.html" target="_blank"><img src="null"></a>
</div>
<div class="swiper-slide">
<a href="/2026/08/20/f1522a2059b546b6ae38e0d4be0c4b6f.html" target="_blank"><img src="null"></a>
</div>
</div>
<div class="swiper-pagination swiper-pagination-white"></div>
</div>-->
<div class="recommend">
<a href="/2026/05/26/0633bc733b314727b30c265db061aad9.html" target="_blank"><img src="/r/toen/images/cms/cover/2026/05/0000.jpg"></a>
</div>
<div class="clearfix channelbox f_1">
<!--AID-->
<div class="box R">
<h3><a href="/aid/index.html">AID</a></h3>
<ul>
<a href="/2025/12/26/0f7e491fa34a42529f43298841eba079.html" target="_blank">
<img src="/r/toen/images/cms/content/2025/12/FOREIGN17666264450896H0BFIB0KJ.jpg">
<p>
Over 1,000 student teachers help transform education in SW China's Xizang
</p>
</a>
<a href="/2025/11/21/c6848ae8a890430a8fa889021f0061d6.html" target="_blank">
Medical aid soothes Kashin-Beck disease patients
</a>
<a href="/2025/08/13/32bbfa6d8ba949b68b63275693d75b61.html" target="_blank">
Hospitals nationwide deploy over 2,000 experts to assist medical institutions in Xizang
</a>
<a href="/2025/11/21/0578ac72f48d4d2ab5b9bcf957e7711f.html" target="_blank">
Paired support sends neonatal care to Nagqu
</a>
<a href="/2025/11/20/366ac9c58ae94baf8b56c56f5e86c98e.html" target="_blank">
'Group-style' aid program transforming healthcare in Xizang
</a>
</ul>
</div>
<!--EDUCATION-->
<div class="box X">
<h3><a href="/edu/index.html">EDUCATION</a></h3>
<ul>
<a href="/2026/02/12/e1b3a8f544da4e8cadb2251d2fe634e2.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/02/fcedcc1be4034aebbbc93d3aae6711f4%20%E6%8B%B7%E8%B4%9D.png">
<p>
Teacher's dedication lights up young dreams on plateau
</p>
</a>
<a href="/2026/01/23/89c90e6588f043efb3890a89cc925306.html" target="_blank">
Power of education shines in Xizang
</a>
<a href="/2025/08/11/8b83d5ff2f83487994b273501f5cbf57.html" target="_blank">
Xizang's education development has made strides in past decades
</a>
<a href="/2024/08/16/212054c7c56c4a57a1cc2c6516e9ec5b.html" target="_blank">
Xizang to increase student subsidies
</a>
<a href="/2024/07/12/eec29b4d8ac511ef97bb043f72e4aa42.html" target="_blank">
Students graduate from Xizang Buddhism University
</a>
</ul>
</div>
<!--OPINIONS-->
<div class="box E">
<h3><a href="/opinion/index.html">OPINIONS</a></h3>
<ul>
<a href="/2026/08/19/3c78405b4f944d0fb99aed49d453721c.html" target="_blank">Unmasking the Dalai Lama: The root of darkness in old Xizang</a>
<a href="/2026/08/05/51a16386c89e43a08d016f4d891b4b00.html" target="_blank">Xizang's cultural revival proves 'last generation' smear false</a>
</ul>
</div>
<!--WP-->
<div class="box N">
<h3><a href="/documents/index.html">WHITE PAPERS</a></h3>
<div class="swiper-container WP" id="swiper-container2">
<div class="swiper-wrapper">
<a class="swiper-slide" href="/2025/03/28/efd117cde67a49f2b3d2602fede75199.html" target="_blank">
<h4>Human Rights in Xizang in the New Era</h4>
<p>(March 2025)</p>
</a>
<a class="swiper-slide" href="/2023/11/10/74c4cbb550eb45a6a95a03ef4c53c551.html" target="_blank">
<h4>CPC Policies on the Governance of Xizang in the New Era: Approach and Achievements</h4>
<p>(Nov. 2023)</p>
</a>
<a class="swiper-slide" href="/2021/05/21/953237a252d0498bbad79466f19960b1.html" target="_blank">
<h4>Tibet Since 1951: Liberation, Development and Prosperity</h4>
<p>(May 2021)</p>
</a>
<a class="swiper-slide" href="/2019/03/28/72190496e5ee44d3b1259cf159fbf468.html" target="_blank">
<h4>Democratic Reform in Tibet -- Sixty Years On</h4>
<p>(March 2019)</p>
</a>
</div>
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
</div>
</div>
<div class="PV">
<!--IN PICS-->
<div class="box photo">
<h3><a href="/pics/index.html">IN PICS</a></h3>
<div>
<div class="swiper-container" id="swiper-container3">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="/2026/08/17/e9a391948b3e49c89fe0f053c19aab07.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/1(1).jpg">
<p>A glimpse of Lingka time during Shoton Festival in SW China's Xizang</p>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/08/17/867372de9af347bc8bc282e20bad88b2.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/1.jpg">
<p>Lhasa stages Tibetan opera during Shoton Festival</p>
</a>
</div>
<div class="swiper-slide">
<a href="/2026/08/13/28363da32a074da2ace846d27e7c9616.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/1%20%E6%8B%B7%E8%B4%9D(2).png">
<p>Traditional Shoton Festival celebrated in Lhasa, China's Xizang</p>
</a>
</div>
</div>
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
</div>
<ul>
<a href="/2026/08/11/00586cf8d56c4f328618075f2ade81da.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/29%20%E6%8B%B7%E8%B4%9D.png">
<p>Nagqu Horse Racing Festival 2026 kicks off in China's Xizang</p>
</a>
<a href="/2026/08/10/929e0cdef9554cc3818c1eeae75249cb.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/11%20%E6%8B%B7%E8%B4%9D.png">
<p>Ecological beauty of Mitika wetland in SW China's Xizang</p>
</a>
</ul>
</div>
</div>
<!--IN VIDEOS-->
<div class="box">
<h3><a href="/videos/index.html">IN VIDEOS</a></h3>
<div class="video">
<a href="/2026/08/20/19012980e5aa419a851636fd7c065a2b.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/ScreenShot_2026-08-20_101036_365.png">
<p>Savor goji berries grown at 3000-meter altitude in Xizang</p>
<span></span>
</a>
<a href="/2026/08/17/5fc11ca927914271ae94dba733a2150e.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/771b7748bb0a43c299ca173076b3bfcd-750.jpeg">
<p>Tibetan Opera: A living tapestry of faith and art</p>
<span></span>
</a>
<a href="/2026/08/17/6bb906a3644c440fa17794bff9854215.html" target="_blank">
<img src="/r/toen/images/cms/cover/2026/08/cover_og_image.jpg">
<p>Beekeeping venture transforms lives in Xizang's Yarlung Zangbo River Valley</p>
<span></span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="w link">
<h5>Links</h5>
<ul>
<a href="http://en.people.cn/" target="_blank">People's Daily</a>
<a href="https://english.news.cn/home.htm#" target="_blank">Xinhua</a>
<a href="http://www.china.org.cn/" target="_blank">China.org.cn</a>
<a href="https://www.cgtn.com/" target="_blank">CGTN</a>
<a href="http://www.chinadaily.com.cn/" target="_blank">China Daily</a>
<a href="http://en.youth.cn/" target="_blank">Youth.cn</a>
<a href="http://www.ecns.cn/" target="_blank">Ecns.cn</a>
<a href="http://english.scio.gov.cn/" target="_blank">Scio.gov.cn</a>
<a href="https://en.humanrights.cn/" target="_blank">China Human Rights</a>
<a href="http://en.chinaxinjiang.cn/" target="_blank">Chinaxinjiang.cn</a>
<a href="http://www.livingbuddha.cn/en/index.html" target="_blank">Livingbuddha.cn</a>
</ul>
</div>
<div class="other">
<div class="w">
<p>
<span>E-mail:editor@tibetol.cn</span>
|<span><a href="/2024/10/18/133d8a7d7175433ab6de4d5fd46e8cf8.html" target="_blank">About Us</a></span>
|<span><a href="/2024/10/18/c9c8395af92541428eb308625580c2e8.html" target="_blank">Contact Us</a></span>
</p>
<p>Copyright by China Intercontinental Communication Co., Ltd. All Rights Reserved.</p>
</div>
</div>
</div></body>
<script>
$(function(){
for(var i=0;i<$('.pictures ul p').length;i++){
(function(index){
$('.pictures ul p').eq(index).css('bottom',-$('.pictures ul a').eq(index).height()+'px');
$('.pictures ul a').eq(index).mouseenter(function(){
$('.pictures ul p').eq(index).animate({'bottom':0},400);
})
$('.pictures ul a').eq(index).mouseleave(function(){
$('.pictures ul p').eq(index).animate({'bottom':-$('.pictures ul a').eq(index).height()+'px'});
})
})(i)
}
})
</script>
<script>
//历史今天
var iNow = new Date().getMonth()+1;
var today = new Date().getDate();
lsjt(iNow,today);
function lsjt(month,day){
//月
if(month < 10){
month = '0' + month;
}
//日
if(day < 10){
day = '0' + day;
}
var md = month+"-"+day;
$('#history h5').text('历史上的今天:'+month+'月'+day+'日');
$.getJSON("/content-list-json.shtml",{categoryId: '155db2c080a811ec875d8cdcd432675c', subtitle: md, siteDir: 'tocn', pageNo: 1, pageSize: 1},function(data){
var html="";
$.each(data.list,function(i,value){
var date = new Date(value.formatCreateDate);
var m =date.getMonth()+1;
var d =date.getDate();
if(m < 10){
m = '0' + m;
}
if(d < 10){
d = '0' + d;
}
var url ="/"+date.getFullYear()+"/"+m+"/"+d+"/"+value.id+".html";
html+="<a href=\""+url+"\" target=\"_blank\">"+value.description+"</a>";
});
$('#history p').html(html);
});
}
</script>
<script>
var swiper = new Swiper('#swiper-container', {
loop: true,
autoplay: 3000,
autoplayDisableOnInteraction: false,
nextButton: '#swiper-container .swiper-button-next',
prevButton: '#swiper-container .swiper-button-prev',
pagination: '#swiper-container .swiper-pagination',
paginationClickable: true,
});
</script>
<script>
var swiper = new Swiper('#swiper-container_S', {
loop: true,
effect: 'fade',
autoplay: 3000,
autoplayDisableOnInteraction: false,
pagination: '#swiper-container_S .swiper-pagination',
paginationClickable: true,
});
</script>
<script>
var swiper = new Swiper('#swiper-container2', {
spaceBetween: 20,
nextButton: '#swiper-container2 .swiper-button-next',
prevButton: '#swiper-container2 .swiper-button-prev',
pagination: '#swiper-container2 .swiper-pagination',
slidesPerView: 'auto',
paginationClickable: true,
});
</script>
<script>
var swiper = new Swiper('#swiper-container3', {
loop: true,
autoplay: 3000,
autoplayDisableOnInteraction: false,
nextButton: '#swiper-container3 .swiper-button-next',
prevButton: '#swiper-container3 .swiper-button-prev',
paginationClickable: true,
});
</script>
</html>