내 웹 사이트에 넣어야하는 중요한 메타 태그는 무엇입니까?
설정할 수있는 메타 태그 가 엄청나게 많은 것 같습니다 . 나는 그들 중 일부가 다른 것보다 더 중요하다고 생각합니다.
제공해야 할 가장 중요한 메타 태그는 무엇이며 그 이유는 무엇입니까?
메타 태그도 필요합니까? (stackoverflow 홈페이지를 보면 아무것도 없습니다)
이 질문이 오래되었다는 것을 알고 있지만 여전히 최고의 Google 히트작이므로 인기있는 소셜 미디어 사이트를 포함하는 업데이트 된 답변을 제공 할 것이라고 생각했습니다.
일반적으로 4 개의 메타 정보 그룹이 있습니다.
일반 메타 정보 -검색 엔진 및 브라우저에서 사용
<title>{{pageTitle}}</title>
<meta charset="utf-8"><!-- html5 version of http-equiv="Content-Type"... -->
<meta name="description" content="{{description}}">
<meta name="keywords" content="{{keywords}}">
<link rel="author" href="https://plus.google.com/{{googlePlusId}}" />
<link rel="canonical" href="{{pageUrl}}" />
Facebook Meta Info- 누군가가 귀하의 URL을 공유 할 때 Facebook에서 사용
<meta property="og:url" content="{{pageUrl}}">
<meta property="og:image" content="{{imageUrl}}">
<meta property="og:description" content="{{description}}">
<meta property="og:title" content="{{pageTitle}}">
<meta property="og:site_name" content="{{siteTitle}}">
<meta property="og:see_also" content="{{homepageUrl}}">
Google+ 메타 정보 -누군가 내 URL을 공유 할 때 Google+에서 사용
<meta itemprop="name" content="{{pageTitle}}">
<meta itemprop="description" content="{{description}}">
<meta itemprop="image" content="{{imageUrl}}">
참고 : 실제로 필요하지는 않습니다. Google+는 Facebook에서 사용하는 오픈 그래프 태그로 대체됩니다.
Twitter 메타 정보 -누군가가 귀하의 URL을 공유 할 때 Twitter에서 사용
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="{{pageUrl}}">
<meta name="twitter:title" content="{{pageTitle}}">
<meta name="twitter:description" content="{{description}}">
<meta name="twitter:image" content="{{imageUrl}}">
몇 년 전부터 메타 태그는 검색 엔진 최적화에 중요했습니다. 그러나 그들은 남용되었고 일반적으로 거의 모든 검색 엔진 (구글, 야후 및 라이브 검색 포함. 실례합니다 : Bing)에서 무시됩니다.
(X) HTML에 포함 할 수있는 SEO의 가장 중요한 태그는 <title>
및 <meta name="description"...>
태그입니다.
<title>
일반적으로 검색 엔진이 목록에서 페이지 이름을 지정하기를 원하는 것이어야합니다.<meta name="description"...>
색인을 생성 할 때 페이지를 설명하는 방법에 대한 기본 아이디어를 검색 엔진에 제공 할 수 있습니다.
그러나이 두 태그를 사용한다고해서 검색 엔진 목록에서 사이트의 가시성을 높이는 데 반드시 차이가있는 것은 아닙니다. 그 측면에 대한 자세한 내용은 Google 사이트 에 SEO 에 대한 멋진 섹션 이 있습니다.
2015 년 5 월 업데이트 : 여전히 매우 인기있는 답변입니다. @alden의 답변이 제 답변 보다 훨씬 더 업데이트 되었기 때문에 살펴볼 것을 권장합니다 (현재 6 살).
원래 답변은 다음과 같습니다.
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
콘텐츠 유형 및 인코딩이 무엇인지 브라우저에 알리려면
<meta NAME="ROBOTS" CONTENT="NOODP">
이유는 http://www.mattcutts.com/blog/google-supports-meta-noodp-tag/ 참조
<meta name="description"...>
분명한
<meta name="keywords"...>
Google은 이것을 사용하지 않지만 다른 검색 엔진은
<meta HTTP-EQUIV="Expires" CONTENT="Tue, 20 Jun 1995 04:13:09 GMT">
이 페이지가 캐시에서 만료되는시기를 알고있는 경우
사용해야하는 가장 중요한 메타 태그는 다음과 같습니다
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
adjusted to suit. This ensures that, if you ever need to transmit that HTML document via something other than a web server (e.g. working on it locally, sending as an attachment), the user-agent is aware of its mime-type and character set. Just make sure your server headers agree.
The best SEO is a website that meets the needs of its target users effectively. To do that you need to have a site that has something in it that people can use, want, or need. This is value and its the most important thing. It can be anything from good articles to entertaining video or a useful download. Tags support good content but cant replace it for SEO. If the content is good enough no tags are needed. Trust me when I say, if your site has something, anything people want or need, that they can't get just anywhere, your site will do well in all regards, tags or no tags. If your site is boring and has no value it will fail, tags or no tags.
the description metatag will be used by google as description of your site. I think it's the most important.
I think that the verify-v1 meta is important. It makes possible to use Google Webmaster tool
GoogleBot ignores meta information only trusting the page content itself rather than content descriptors. So, the usefulness of certain tags may be limited.
I would make sure you have a title, description, keyword, and revisit-after tag in your web pages. Although Google doesn't weigh keyword tag as much, it may still be used by smaller search engines.
'Development Tip' 카테고리의 다른 글
파이썬의 dict.keys ()가 집합이 아닌 목록을 반환하는 이유는 무엇입니까? (0) | 2020.10.10 |
---|---|
SqlCommand.CommandTimeout과 SqlConnection.ConnectionTimeout의 차이점은 무엇입니까? (0) | 2020.10.09 |
Angular UI 라우터 단위 테스트 (URL 상태) (0) | 2020.10.09 |
새 ASP.NET MVC 5 프로젝트에서 NuGet 패키지 참조를 업데이트 한 후 JSON.NET과의 어셈블리 버전 충돌을 어떻게 해결할 수 있습니까? (0) | 2020.10.09 |
문자열 표현에서 제네릭 유형을 어떻게 얻을 수 있습니까? (0) | 2020.10.09 |