トップ 差分 一覧 ソース 検索 ヘルプ PDF RSS ログイン

sitemap

sitemap
サーバにどのようなコンテンツが入っているかを検索エンジンに通知する仕組み

規格

sitemap FAQ

sitemap プロトコル説明

サンプル

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)
my $sitemap=WWW::Google::SiteMap->new();
$sitemap->add($url);
$sitemap->pretty(1);
$sitemap->write(パス);