# Google에서 저자 권위를 높이기 위해 사용자 프로필 페이지에 Schema.org 적용하기

**URL:** https://meta.discourse.org/t/applying-schema-org-on-the-user-profile-page-for-improved-author-authority-on-google/196054
**Category:** Feature
**Created:** [7월 5, 2021, 12:01오후 UTC](https://meta.discourse.org/t/applying-schema-org-on-the-user-profile-page-for-improved-author-authority-on-google/196054 "2021-07-05T12:01:18Z")
**Posts on this page:** 1
**Showing post:** 12

<div class="post-metadata">

### Author: ![rrit](https://avatars.discourse-cdn.com/v4/letter/r/b5ac83/32.png) [@rrit](https://meta.discourse.org/u/rrit)
#### Post date: [1월 5, 2024, 3:53오후 UTC](https://meta.discourse.org/t/applying-schema-org-on-the-user-profile-page-for-improved-author-authority-on-google/196054/12 "2024-01-05T15:53:51Z")

</div>

### Discourse가 인덱싱 가능한 프로필 페이지를 제공해야 할까요?

인덱싱 가능한 프로필 페이지의 장단점에 대해 다양한 의견이 있습니다.  
저는 최소한의 인덱싱 가능한 프로필 페이지를 추가해야 한다는 점을 강조하기 위해 일부 의견을 요약해 보았습니다.

* * *

1. 참조되는 인덱싱 가능한 프로필 페이지가 있으면 Google이 포럼 콘텐츠를 더 쉽게 처리할 수 있습니다:

> [@rrlevering](#):
>
> 포럼의 관점에서 보면, 이는 주로 포럼 내 콘텐츠의 저자를 \*[예: Google]\*가 더 잘 이해할 수 있게 해줍니다. **모든 게시물에 _[예: Google]_ 해당 정보를 모두 붙이는 것은 비용이 많이 들기 때문이죠 _[참고: 강조 추가]_**.

1. "의미 구별(disambiguation)"을 위해 Google은 저자에 대한 어떤 형태의 참조라도 필요합니다 - 인덱싱이 가능하지 않더라도요:

> [@토론 포럼 스키마 개선](https://meta.discourse.org/t/discussion-forum-schema-improvements/287347/25):
>
> Does adding the author URL while it’s path is blocked by our default robots.txt still makes sense? Should we remove the block from robots.txt now that we promote those URLs?

> [@토론 포럼 스키마 개선](https://meta.discourse.org/t/discussion-forum-schema-improvements/287347/26):
>
> Please leave the URL there even if it’s blocked. You can discuss whether that makes sense or not for your forum use cases but even with the crawl blocked it can help with disambiguation.

1. 최소한의 프로필 페이지를 위한 스키마 초안이 있습니다:

> [@rrlevering](#):
>
> 그리고 그것은 좋은 일반적인 구조 권장 사항입니다 (ProfilePage → mainEntity → Person). [schema.org](http://schema.org)에 계정 유형이 있었으면 좋았을 텐데, 그 부분은 채택이 느려서 현재 우리가 가진 것을 활용하고 있습니다.

1. 인덱싱 가능한 프로필 페이지로 인한 Discourse의 추가 부하가 크지 않습니다:

Google은 이미 프로필 URL을 크롤링하고 있으며, `X-Robots-Tag: noindex` HTTP 헤더가 포함된 응답을 받은 후 결과를 폐기합니다.

> **Google Search Console 스크린샷 --\> 'noindex' 태그로 제외됨 (클릭하여 열기)**
>
> ![grafik](https://global.discourse-cdn.com/meta/original/4X/6/6/5/665a592a1183cd52ed3314530db4d1a810e4b5b3.png)

최소한의 프로필 페이지를 제공하면 Google이 결과를 최소한 어떤 식으로든 활용할 수 있게 됩니다.

* * *

#### 제 결론

프로필 페이지에 `crawler_view`를 추가하여 최소한의 스키마 마크업만 표시하도록 하세요 – 추가 정보는 필요하지 않습니다.  
최소한의 스키마 마크업은 모든 게시물에 `author` 속성으로 이미 제공되는 스키마 데이터와 정확히 일치해야 합니다:

```html
<html>
  <body itemtype="https://schema.org/ProfilePage" itemscope>
    <span itemprop="mainEntity" itemtype="http://schema.org/Person" itemscope>
      <a itemprop="url" href='https://meta.discourse.org/u/{user_name}'>
        <span itemprop='name'>{user_name}</span>
      </a>
    </span>
  </body>
</html>

```

이것은 유효한 "프로필 페이지"입니다 - [search.google.com/test/rich-results의 이 예시](https://search.google.com/test/rich-results/result?id=LbMs7e_TZPmWHCcKXawfVA)를 참고하세요:

 ![grafik](https://global.discourse-cdn.com/meta/original/4X/a/2/0/a20c7cb10a20abc922e8fcc3f9f57dc4f24ae4f7.png)

그 후 프로필 페이지 URL은 다시 인덱싱 가능해질 수 있습니다.

---

_[View the full topic](https://meta.discourse.org/t/applying-schema-org-on-the-user-profile-page-for-improved-author-authority-on-google/196054)._
