페이지별 옵션
<url>
<loc>https://www.your-website.com/page-1</loc>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://www.your-website.com/page-2</loc>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
실제로 최적의 효과를 위해 각 페이지를 조정하는 데 사용할 수 있는 소수의 옵션이 있습니다.
주파수 변경
changefreq
는 페이지가 얼마나 자주 변경되는지 측정한 것입니다. Sitemaps 프로토콜에서:이 값은 검색 엔진에 일반 정보를 제공하며 페이지를 크롤링하는 빈도와 정확히 관련되지 않을 수 있습니다. 유효한 값은 다음과 같습니다.
언제나
매시간
일일
주간
월간 간행물
매년
절대
액세스할 때마다 변경되는 문서를 설명하려면 "always"값을 사용해야 합니다. 보관된 URL을 설명하는 데 "never"값을 사용해야 합니다.
블로그의 경우
daily
가 대부분의 사용 사례에 꽤 잘 맞는 것 같습니다.우선 순위
우선순위는 페이지의 중요도를 상대적으로 측정한 것입니다. 이를 사용하여 관심을 가져야 하는 페이지와 그다지 중요하지 않은 페이지를 크롤러에 알릴 수 있습니다. 0.0에서 1.0까지 11가지 값을 사용할 수 있습니다.
If you're a clever trickster, you might be concocting a devious plan: set every page to a `1.0` priority, and watch as your site rockets to the top of the search results!
Unfortunately, this scheme doesn't work—`priority` is a _**relative**_ measure of importance. It won't affect how your site compares to other sites.
라스트모드
마지막으로 페이지가 마지막으로 수정된 날짜를 나타내는 날짜-시간 스탬프를 추가할 수 있습니다.
Googlebot은 페이지의 콘텐츠가 변경된 시점을 감지할 수 있을 만큼 충분히 똑똑하지만 사양을 올바르게 따르는 것은 문제가 되지 않기 때문에 솔직히 이것이 얼마나 가치가 있는지 잘 모르겠습니다.
Down the rabbit hole
If you're interested in learning about what other options are available, or if you're stuck trying to debug a problem, I thought I'd share some of the digging I did when researching for this tutorial.
gatsby-plugin-sitemap
defers to an NPM package,sitemap
. At the time of writing, it relies on an outdated version of this package, version 1.13.
Hopefully, this isn't something you need to dig into. If needed, though, you can learn more on the version 1.13 docs of thesitemap
package.
Reference
이 문제에 관하여(페이지별 옵션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/topcode007/page-specific-options-1djl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)