facebook twitter hatena line email

「SEO/sitemap」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(googleが求めるsitemap)
行52: 行52:
  
 
このサイトにはxmlのsitemapとrssが登録できるので登録しておく
 
このサイトにはxmlのsitemapとrssが登録できるので登録しておく
 +
 +
==PubSubHubbubとは==
 +
高速indexさせるためのツール

2015年9月19日 (土) 21:01時点における版

googleが求めるsitemap

http://googlewebmastercentral.blogspot.jp/2014/10/best-practices-for-xml-sitemaps-rssatom.html

Example of an XML sitemap:

<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
   <loc>http://example.com/mypage</loc>
   <lastmod>2011-06-27T19:34:00+01:00</lastmod>
 </url>
 <url>
   ...
 </url>
</urlset>

Example of an RSS feed:

dc:dateでなくpubDateを使う

<?xml version="1.0" encoding="utf-8"?>
<rss>
 <channel>
   <item>
     <link>http://example.com/mypage</link>
     <pubDate>Mon, 27 Jun 2011 19:34:00 +0100</pubDate>
   </item>
   <item>
     ...
   </item>
 </channel>
</rss>

Example of an Atom feed:

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 <entry>
   <link href="http://example.com/mypage" />
   <updated>2011-06-27T19:34:00+01:00</updated>
 </entry>
 <entry>
   ...
 </entry>
</feed>

sitemap登録

サーチコンソールから行う https://www.google.com/webmasters/tools/home?hl=ja

このサイトにはxmlのsitemapとrssが登録できるので登録しておく

PubSubHubbubとは

高速indexさせるためのツール