Metadata Readiness Guide
Metadata gives crawlers concise identity and presentation signals. Strong metadata is unique, internally consistent, and faithful to the visible content.
Establish one canonical identity
Choose the preferred HTTPS URL for each page and use it consistently in canonical, Open Graph, sitemap, and internal-link signals.
- Write a unique descriptive title.
- Add a useful meta description.
- Publish one absolute canonical URL.
- Declare the document language.
Avoid contradictory directives
Review robots metadata and HTTP X-Robots-Tag together. A page should not advertise itself in a sitemap while simultaneously declaring an unintended noindex policy.
- Check index and follow directives.
- Align Open Graph URL and canonical URL.
- Use social titles and descriptions that match the page.
- Retest after framework or SEO-plugin updates.
Inspect the delivered document
Metadata inserted after load may not be interpreted consistently by every consumer. Check the server response and rendered document, and verify that templates do not emit duplicates.
- Keep one title and one intended canonical element.
- Use absolute URLs for canonical and Open Graph URL.
- Confirm the language matches the primary content.
- Review metadata on error, pagination, and parameterized pages.
A consistent page identity
This compact head aligns the title, description, canonical, robots, and Open Graph URL. Replace the values with claims the visible page supports.
<html lang="en">
<head>
<title>Example Guide | Example Company</title>
<meta name="description" content="A concise summary of this guide.">
<link rel="canonical" href="https://example.com/guide">
<meta name="robots" content="index,follow">
<meta property="og:title" content="Example Guide">
<meta property="og:url" content="https://example.com/guide">
</head>Verify the change
Run the AIWebSignals scanner against the exact public page, review the observation confidence, and compare the saved result after your update. A technical improvement should be visible in the evidence—not assumed from a deployment.
Scan and verifyAuthoritative references
Use current primary documentation when a crawler token, platform policy, or web standard changes.
- Google Search Central: Canonical URLs
- Google Search Central: Robots meta and X-Robots-Tag
- The Open Graph protocol
Last reviewed August 18, 2026.