facebook twitter hatena line email

「SEO/sitemap」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行46: 行46:
 
   </entry>
 
   </entry>
 
  </feed>
 
  </feed>
 +
 +
==sitemapにimageを追加
 +
    <url>
 +
      <loc>http://example.com/mypage</loc>
 +
      <lastmod>2011-06-27T19:34:00+01:00</lastmod>
 +
      <image:image>
 +
        <image:loc>http://example.com/page.png</image:loc>
 +
        <image:title>画像タイトル</image:title>
 +
        <image:caption>画像の説明</image:caption>
 +
      </image:image>
 +
    </url>
 +
 +
参考ページ
 +
 +
http://lblevery.com/sfn/attract/wmt/sitemap-create/
 +
 +
http://www.adminweb.jp/wmt/sitemap/index8.html
  
 
==sitemap登録==
 
==sitemap登録==

2015年10月3日 (土) 18:13時点における版

google推奨フォーマット

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にimageを追加

   <url>
     <loc>http://example.com/mypage</loc>
     <lastmod>2011-06-27T19:34:00+01:00</lastmod>
     <image:image>
       <image:loc>http://example.com/page.png</image:loc>
       <image:title>画像タイトル</image:title>
       <image:caption>画像の説明</image:caption>
     </image:image>
   </url>

参考ページ

http://lblevery.com/sfn/attract/wmt/sitemap-create/

http://www.adminweb.jp/wmt/sitemap/index8.html

sitemap登録

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

このサイトにはxmlのsitemapと(rss/atom)が登録できるので両方登録しておく(by google両方推奨)

PubSubHubbubとは

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

参考

https://www.peko.co.jp/search-console/function/xml-sitemap-3015