Install any skill in seconds. Free to start, no credit card required.
Get Started Free →When the user wants to configure canonical URLs, fix duplicate content, or consolidate URL signals. Also use when the user mentions "canonical," "canonical URL," "duplicate content," "duplicate content fix," "preferred URL," or "URL consolidation." For GSC duplicates, use google-search-console.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 4% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 3% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 13% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 4% | 0% |
Guides canonical tag configuration to consolidate duplicate content and declare preferred URLs.
When invoking: On first use, if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output.
Check for project context first: If .claude/project-context.md or .cursor/project-context.md exists, read it for site URL and language structure.
Identify:
| Method | When | Strength | |--------|------|----------| | 301 redirect | Preferred; server can redirect | Strongest — permanent redirect | | Canonical tag | Cannot redirect (e.g. params, pagination) | Strong — HTML signal | | robots.txt | Block non-canonical paths | Weak — advisory only |
Use 301 for HTTP→HTTPS, www variants, trailing slash. Use canonical for params, pagination, UTM.
HTTPS is a ranking signal (Google, 2014). Users and crawlers should access only the HTTPS version.
| Requirement | Action | |-------------|--------| | SSL/TLS certificate | Install valid certificate; use Let's Encrypt for free | | 301 redirect | HTTP → HTTPS; all HTTP requests redirect to HTTPS | | Mixed content | No HTTP resources on HTTPS pages; fix mixed content warnings | | HSTS | Optional; Strict-Transport-Security header for repeat visitors |
WWW vs non-WWW: Choose one preferred version; 301 redirect the other. See canonical rules above.
| Rule | Note | |------|------| | Absolute URL | Include https:// | | Consistency | Must match current page URL or the chosen preferred version | | No chains | A→B→C is invalid |
tsxexport const metadata = { alternates: { canonical: "https://example.com/page-slug", languages: { zh: "https://example.com/zh/page-slug", en: "https://example.com/page-slug", "x-default": "https://example.com/page-slug", }, }, };
html<link rel="canonical" href="https://example.com/page-slug" />
Apache (.htaccess):
apacheRewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Nginx:
nginxreturn 301 https://$host$request_uri;
Other measured skills in the registry, with their headline benchmark lift.