2009-08-13 15 views
9

検索エンジンとウェブサイトのクローラの場合、URLの順序はXMLサイトマップで重要ですか?URLの順序はXMLサイトマップで重要ですか?

現在、サイトマップが生成されると、私はウェブサイトのURLをデータベース内で一意のIDを使用して順番に並べます。私は日付順にURLを注文すべきですか?

シーケンシャルサイトマップ

<urlset> 
<url> 
    <loc>http://example.com/</loc> 
    <lastmod>2009-08-14</lastmod> 
</url> 
<url> 
    <loc>http://example.com/article/1/about_us</loc> 
    <lastmod>2009-07-14</lastmod> 
</url> 
<url> 
    <loc>http://example.com/article/2/contacts</loc> 
    <lastmod>2009-08-09</lastmod> 
    </url> 
</urlset> 

日順序サイトマップ

<urlset> 
<url> 
    <loc>http://example.com/</loc> 
    <lastmod>2009-08-14</lastmod> 
</url> 
<url> 
    <loc>http://example.com/article/2/contacts</loc> 
    <lastmod>2009-08-09</lastmod> 
    </url> 
<url> 
    <loc>http://example.com/article/1/about_us</loc> 
    <lastmod>2009-07-14</lastmod> 
</url> 
</urlset> 

答えて

10

した後、いくつかのより多くの私はsitemaps.orgでよくある質問への答えを見つけて検索します。

Q: Does position of a URL in a Sitemap influence its use?

号サイトマップのURLの位置は が検索エンジンによって使用されるか、または見なされる方法影響する可能性はありません。

+1

私はそれがより複雑だと思います。私は最初のエントリは、SEOの観点から最後のものよりも重要性があると信じています。 – Hartator

関連する問題