--- 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 ( <>