sitemap
- sitemap
- サーバにどのようなコンテンツが入っているかを検索エンジンに通知する仕組み
規格
sitemap FAQ
sitemap プロトコル説明
- http://www.sitemaps.org/ja/protocol.php
- XML サイトマップのサンプル
- サイトマップ インデックス ファイル (複数のサイトマップ ファイルのインデックス) を使用する場合
- http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd
サンプル
perl
- 宣言
use WWW::Google::SiteMap;
- URL作成
my $url=WWW::Google::SiteMap::URL->new(); $url->loc($newURL); $url->changefreq('weekly'); $url->lastmod($timespec); $url->priority($priority)
- sitemap 作成
my $sitemap=WWW::Google::SiteMap->new(); $sitemap->add($url); $sitemap->pretty(1); $sitemap->write(パス);