[백업][가리사니] sitemaps(사이트맵) 형식
xml

이 문서는 가리사니 개발자 포럼에 올렸던 글의 백업 파일입니다. 오래된 문서가 많아 현재 상황과 맞지 않을 수 있습니다.

<link rel="alternate" hreflang="ko" href="http://www.example.com/ko-site-map" >

먼저 위와같이 사이트맵으로 쓸 주소를 입력합니다.

사이트 맵 파일의 형식

<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
    <url>
        <loc>http://example.com/</loc>
        <lastmod>2006-11-18</lastmod>
        <changefreq>daily</changefreq>
        <priority>0.8</priority>
    </url>
</urlset>

검색엔진별 사이트맵을 수집하는 페이지 Google : http://www.google.com/webmasters/tools/ping?sitemap= Bing + Yahoo : http://www.bing.com/webmaster/ping.aspx?siteMap= Yandex : http://webmaster.yandex.com/site/map.xml Baidu : http://zhanzhang.baidu.com/dashboard/index

출처 : http://en.wikipedia.org/wiki/Sitemaps