SEO Optimization Guide
SEO is not homework you finish after launch; it is engineering you do from day one. The plan below covers the technical layer (structured data, sitemap, robots.txt), content, and measurement — and can be handed to an AI site builder to implement.
AI Prompt Template
Create an SEO optimization plan.
- Site Name: [Name] | Type: [Corporate/E-commerce/Blog]
- Target Keywords: [3-5] | Target Market: [Global/China]
Output: On-page SEO, technical SEO (structured data/sitemap/robots.txt), content strategy, Search Console setup.
Structured Data (JSON-LD)
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Company Name",
"url": "https://www.example.com",
"logo": "https://www.example.com/assets/logo.svg"
}
SEO Is Engineering, Not Magic
Many people think SEO is about keyword stuffing and buying backlinks. That might have worked a decade ago, but modern search engines are sophisticated enough to evaluate content quality directly.
SEO is about helping search engines understand your site — and convincing them it's worth recommending.
Technical SEO Foundations
Help Search Engines Find Your Pages
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>https://example.com/</loc><priority>1.0</priority></url>
<url><loc>https://example.com/services</loc><priority>0.8</priority></url>
</urlset>
# robots.txt
User-agent: *
Disallow: /admin/
Disallow: /api/
Sitemap: https://example.com/sitemap.xml
Help Search Engines Understand Your Content
Structured data is the most direct way to help search engines understand your pages. Add it while writing the page, not as an afterthought.
For comparison sites, Product and FAQ schema types are most useful:
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Alibaba Cloud ECS",
"offers": {
"@type": "Offer",
"price": "99",
"priceCurrency": "CNY"
}
}
Structured data needs testing: validate the syntax with Google's Rich Results Test after deploying, and check Search Console for enhancement reports. Also do not overlook canonical tags — if the same content is reachable through multiple URL variants (query parameters, www vs bare domain, HTTP vs HTTPS), point a canonical tag at the main version so ranking signals are not split.
Content Strategy
Write What People Search For
Before writing a single word, spend 15 minutes on keyword research. Find out what people actually search for, not what you assume they search for.
New sites should start with long-tail keywords — lower volume but clearer intent. Build authority there before targeting broader terms. When researching, do not only look at search volume — also check whether the results page is dominated by big sites. If a term's results are all industry giants, a new site will struggle to break in; aim for terms with less competition but the same intent.
Content Structure
SEO-friendly content has clear information hierarchy:
- H1: includes core keyword, accurately describes content
- H2/H3: breaks down dimensions, naturally incorporates related terms
- Paragraphs: one point per paragraph, 100-200 words
- Lists: ideal for comparisons and step-by-step instructions
Measuring SEO
| Metric | What It Tells You | Frequency |
|---|---|---|
| Organic traffic | Visits from search engines | Weekly |
| Top 10 keyword count | Core keyword coverage | Monthly |
| Index rate | Pages search engines have indexed | Monthly |
| Average CTR | Click performance in search results | Monthly |
Don't expect rankings on day one. SEO is cumulative — as content and trust build, rankings follow. Export this set of metrics at a fixed time each month and archive it for year-over-year comparison, rather than reacting to single-week fluctuations.
A Roadmap: From Day One to Month Six
- Weeks 1-2 (foundation): submit your sitemap and connect Search Console; fix robots.txt and page titles; add structured data to core pages.
- Months 1-2 (content): produce a batch of 800+ word pieces around 10-15 long-tail keywords, keeping a steady cadence of 2-3 posts per week.
- Months 3-4 (validation): study impressions and clicks in Search Console; rewrite titles and meta descriptions for pages with impressions but no clicks; add internal links to pages that are indexed but not ranking.
- Months 5-6 (expansion): extend related topics around the long-tail terms that performed well, form topic clusters, and start targeting medium-difficulty keywords.
SEO has no "flip a switch" magic, but if you follow this cadence, most sites see a clear inflection in the organic traffic curve around month three.
Balancing Content and Conversion
Do not polish CTR at the expense of conversion: a headline can be catchy, but the content has to deliver; and once a page ranks, landing-page speed and CTAs need to keep up. Run A/B tests on core landing pages to turn the people who click in into the people who stay.
Common Misconceptions
- Buying backlinks will move the needle: under modern algorithms, low-quality links are not just useless — they can trigger penalties. Spend the time on content quality instead.
- Keyword density is a science: there is no "optimal density." Natural writing and semantic relevance are what matter.
- Submitting a sitemap is enough: a sitemap only solves discoverability. Whether a page ranks depends on content quality and authority.
- The bigger the keyword the better: high-competition terms are a resource sink for new sites without authority. Instead of burning months on a head term like "server," win on clear-intent long-tail terms first.
One Piece of Advice
Treat every piece of content as an answer to a specific search question. If you answer it better than the current top result, rankings will come.
Reference: Google Search Central docs https://developers.google.com/search/docs
Reference: schema.org structured data https://schema.org/docs/documents.html