--- id: wiki-2026-0508-ai-answer-engine-optimization title: AI Answer Engine Optimization (AEO) category: 10_Wiki/Topics status: verified canonical_id: self aliases: [AEO, GEO, generative engine optimization, AI search SEO, citation optimization] duplicate_of: none source_trust_level: B confidence_score: 0.85 verification_status: conceptual tags: [aeo, geo, seo, llm-search, structured-data, ssr, json-ld, content-strategy] raw_sources: [] last_reinforced: 2026-05-09 github_commit: pending inferred_by: Claude Opus 4.7 (manual cleanup 2026-05-09) tech_stack: language: HTML / JSON-LD framework: Next.js / Astro / SSR --- # AI Answer Engine Optimization (AEO) ## πŸ“Œ ν•œ 쀄 톡찰 > **"Search 의 click β†’ AI answer 의 citation"**. ChatGPT / Perplexity / Google AI Overviews 의 λ§€ brand 의 source 의 selection. **SSR + JSON-LD + semantic HTML + Q&A format**. ## πŸ“– 핡심 ### λ§€ search engine 의 evolution - **μ˜› SEO**: keyword + ranking β†’ click. - **AEO**: AI 의 answer 의 citation source. - **GEO** (Generative Engine Optimization): same idea. ### λ§€ AI bot 의 behavior - **GPTBot, Claude-Web, PerplexityBot**: crawl + summarize. - **JS execution X**: cost. λ§€ SSR / SSG 의 essential. - **Cite recent sources**: freshness. - **Trust signal**: domain authority, structured data. ### Core technique #### 1. SSR / SSG (JS Execution Wall 제거) - λ§€ SPA 의 JS-only render = bot 의 invisible. - λ§€ SSR (Next, Astro) = HTML 의 first paint. #### 2. Semantic HTML ```html

Topic

Direct answer in first paragraph.

Question 1?

Answer.

``` #### 3. JSON-LD structured data ```html ``` #### 4. Q&A format - H2 = question. - λ§€ H2 직후 = direct answer. - λ§€ paragraph 의 self-contained. #### 5. Direct answer in lead - λ§€ first 50 word 의 answer. - λ§€ inverted pyramid (journalism). #### 6. Citation-friendly - λ§€ specific number / fact. - λ§€ source 의 explicit. - λ§€ author 의 expertise. #### 7. llm.txt / robots.txt control ```txt # llm.txt (proposal) # Allow ChatGPT, Claude, Perplexity to cite. User-agent: * Allow: / ``` ### λ§€ platform 의 difference #### Google AI Overviews (SGE) - λ§€ YMYL (Your Money Your Life) 의 strict. - λ§€ E-E-A-T (Experience, Expertise, Authority, Trust). - λ§€ traditional SEO 의 baseline. #### ChatGPT / Claude / Perplexity - Real-time web search. - λ§€ cite source. - Domain trust signal. #### Bing Chat / Copilot - Edge integration. - λ§€ enterprise μΉœν™”. ## πŸ’» Code ### Next.js SSR ```tsx // app/article/[slug]/page.tsx export default async function ArticlePage({ params }) { const article = await fetchArticle(params.slug); return ( <>