기술적 SEO 기본기는 AEO 100점 중 8점이지만, 누락되면 다른 최적화 노력이 모두 무의미해질 수 있습니다. canonical, HTTPS, title/description, Open Graph, sitemap.xml은 검색엔진과 AI 봇 모두가 페이지를 올바르게 인식하기 위한 최소 요건입니다.

기술 기본기의 7가지 세부 항목은 무엇인가요?

항목배점내용
canonical URL1.5점대표 URL 지정으로 중복 콘텐츠 방지
HTTPS1점보안 연결 — Trustworthiness 기본 요건
title + description1.5점title 존재 + description 50~160자
Open Graph + Twitter Card1.5점og:image(필수)·og:title·twitter:card
viewport·charset·html lang1점모바일·인코딩·언어 명시
sitemap.xml1점sitemap 존재 + robots.txt 내 Sitemap 선언
이미지 alt 비율0.5점전체 이미지 중 80% 이상 alt 보유

canonical URL은 어떻게 설정하나요?

모든 페이지의 <head> 안에 아래 코드를 추가하세요. href는 해당 페이지의 정규 URL(www 포함/불포함, 끝 슬래시 일관성 등)을 결정해서 통일합니다.

<link rel="canonical" href="https://example.com/page">

title과 description은 어떻게 작성해야 하나요?

  • title: 30~60자, 핵심 키워드 앞에, 사이트명은 뒤에 (예: "AEO 최적화 방법 — AEO 검사기")
  • description: 50~160자, 자연어 문장, 키워드 1~2개 자연스럽게 포함
<title>AEO 최적화 방법 완전 가이드 — AEO 검사기</title>
<meta name="description" content="AEO(Answer Engine Optimization) 핵심 6가지 항목을 단계별로 설명합니다. robots.txt AI 봇 허용부터 JSON-LD 구조화 데이터까지 수정 코드를 포함해 안내합니다.">

Open Graph 이미지는 어떻게 설정하나요?

OG 이미지는 1200×630px, WebP 또는 PNG, 200KB 이내를 권장합니다. 아래 태그를 <head>에 추가하세요.

<meta property="og:title" content="페이지 제목">
<meta property="og:description" content="설명 (150자 이내)">
<meta property="og:image" content="https://example.com/og-image.webp">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:url" content="https://example.com/page">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">

sitemap.xml 설정은 어떻게 하나요?

sitemap.xml을 만든 뒤 robots.txt에 선언하고 Search Console에 제출하세요.

# robots.txt 끝에 추가
Sitemap: https://example.com/sitemap.xml

제출 대상: Google Search Console, 네이버 Search Advisor, Bing Webmaster Tools (Bing 제출은 ChatGPT 검색 색인에도 영향)