What SEO changes for an existing site

SEO work changes the way a site is planned, written, linked, and shipped. It turns isolated pages into a crawlable system: each important topic has a clear URL, every public page has unique metadata, navigation exposes the most useful paths, and the source HTML contains enough information to understand the page without guessing.

The most common improvement is not a magic keyword. It is removing friction: duplicate titles, vague slugs, missing canonical tags, orphaned pages, slow templates, image-only text, and article archives that have no clear relationship to the rest of the site.

The SEO implementation stack

LayerWhat to implementPractical output
ResearchMap audience tasks to page types.A keyword and intent map, grouped by topic cluster.
ArchitectureMake URLs, hubs, breadcrumbs, and navigation predictable.Short slugs, hub pages, descriptive internal links.
HTMLExpose the page title, description, canonical URL, headings, and readable content.Pre-rendered HTML or server-rendered pages.
MarkupDescribe page type and relationships without exaggerating.Article, WebPage, Organization, and BreadcrumbList JSON-LD.
AccessControl crawler paths without hiding important content.robots.txt, sitemap.xml, status codes, redirects.
MaintenanceKeep pages useful as topics and products change.Content refresh queue, broken link checks, change logs.

Baseline HTML every article should ship with

A good article template should produce the same core signals every time. The exact framework does not matter as much as the final HTML.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Technical SEO Checklist for SaaS Documentation</title>
    <meta name="description" content="A practical checklist for making SaaS documentation crawlable, fast, internally linked, and easy to maintain.">
    <link rel="canonical" href="https://example.com/guides/technical-seo-checklist/">
    <meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large">
  </head>
  <body>
    <main>
      <article>
        <h1>Technical SEO Checklist for SaaS Documentation</h1>
        <p>Use this checklist before publishing a new documentation section.</p>
      </article>
    </main>
  </body>
</html>

Keyword research becomes page design

Keyword research is useful only when it changes what you publish. A practical keyword map should connect a query pattern to a page type, search intent, required proof, and internal links.

Query patternLikely intentBest page typeWhat the page must contain
what is technical seoDefinitionCore guidePlain definition, scope, examples, next steps.
robots txt exampleImplementationSnippet guideWorking file examples and common mistakes.
seo checklist for new websiteWorkflowChecklistOrdered steps, validation commands, owner notes.
canonical tag vs redirectComparisonDecision guideUse cases, examples, and failure modes.

SEO work should produce files, not just recommendations

For a small technical site, the deliverables are concrete: updated templates, redirects, metadata defaults, a sitemap, a robots file, schema helpers, image sizing rules, and an editorial checklist. If an SEO audit cannot be translated into code, configuration, or content changes, it is probably too vague.

Implementation output
  • /sitemap.xml lists only canonical public URLs.
  • /robots.txt allows important sections and points to the sitemap.
  • Article pages include Article JSON-LD and visible update dates.
  • Hub pages link to supporting guides using descriptive anchor text.
  • Images use width, height, lazy loading, and meaningful alt text when relevant.