⬛ Sitemap.xml과 Robot.txt 추가

- sitemap.xml
---
layout: null
---

<?xml version="1.0" encoding="UTF-8"?>
<urlset 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"
        xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    {% for post in site.posts %}
    <url>
        <loc>{{ site.url }}{{ post.url }}</loc>
        {% if post.lastmod == null %}
        <lastmod>{{ post.date | date_to_xmlschema }}</lastmod>
        {% else %}
        <lastmod>{{ post.lastmod | date_to_xmlschema }}</lastmod>
        {% endif %}

        {% if post.sitemap.changefreq == null %}
        <changefreq>weekly</changefreq>
        {% else %}
        <changefreq>{{ post.sitemap.changefreq }}</changefreq>
        {% endif %}

        {% if post.sitemap.priority == null %}
        <priority>0.5</priority>
        {% else %}
        <priority>{{ post.sitemap.priority }}</priority>
        {% endif %}

    </url>
    {% endfor %}
</urlset>
- robots.txt
User-agent: *
Allow: /

Sitemap: https://x2info.github.io/sitemap.xml

⬛ Google Serach Console에 등록

1. Google Serach Console 사이트에 접속합니다.
2. 시작하기 버튼을 누릅니다.

3. 아래와 같은 화면이 나오면 URL 접두어를 선택하고, https를 포함한 블로그 URL을 입력하고 계속을 누릅니다.

4. 소유권 확인창이 나오면 HTML파일을 다운로드 후 블로그 Root 폴더에 업로드 하고, 확인 버튼을 누릅니다.

5. 소유권이 확인 되면, 속성으로 이동을 선택한다.

6. 만약 완료를 눌러서 창이 닫혔다면, Google Serach Console 맨 하단에 Google Search Console로 이동을 선택한다.

7. Sitemap 메뉴를 눌러 블로그 Sitemap 주소를 입력합니다.
  • 가져올 수 없음이라고 나오지만, 구글링 결과 시간이 지나면 정상적으로 등록된다고 합니다.

Leave a comment