您应该使用站点地图为所有内容建立索引。包括每个URL都没有任何弊端,并且存在一些URL可能被遗漏的危险。
在您的站点地图中,每个网址可以具有与之关联的不同数据集。查看“ 元素定义”,然后为更重要的网址和不太重要的网址调整设置
<url>
<loc>http://www.example.com/about</loc>
<lastmod> 2010-06-30</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
“ <changefreq> are about how frequently a page may change. Adjust the value as needed,
始终and
每小时”的值表明您认为页面经常更新。
always
hourly
daily
weekly
monthly
yearly
never
您可以为设置值<priority>
:
<priority>1.0</priority>
<priority>0.9</priority>
<priority>0.8</priority>
<priority>0.7</priority>
<priority>0.6</priority>
<priority>0.5</priority>
<priority>0.4</priority>
<priority>0.3</priority>
<priority>0.2</priority>
<priority>0.1</priority>
<priority>0.0</priority>
因此,对于您发现更重要的页面,请按优先级顺序设置项目。非常重要的设置为1.0
,重要的0.9
,定期的重要性0.5
,不重要的0.1
或不重要的0.0
。这应该给您所需的控制量。
简而言之,假设您的网址少于50,000个,保留所有内容就没有任何弊端。