Skip to content

www vs non-www: Canonicalisation Benchmark 2026

Key idea:

Enterno.io checked canonical URL choice for the top-1M sites (March 2026). **Non-www** chosen by **63%**, **www** — **34%**. **3%** have both versions reachable without redirect (SEO duplicate-content issue). Trend: post-2020 sites pick non-www 80% of the time. Legacy (before 2015) — www in 55%. Runet: non-www 58%, www 38%, both 4%.

Below: key findings, platform breakdown, implications, methodology, FAQ.

Key Findings

MetricPass / ValueMedianp75
non-www canonical63%
www canonical34%
Both versions live without redirect (SEO issue)3%
Runet non-www58%
Runet www38%
Sites younger than 2020 on non-www80%
Sites older than 2015 on www55%
301 permanent redirect used91%

Breakdown by Platform

PlatformShareDetail
Next.js/Vercel9%non-www: 94%
WordPress22%non-www: 61% / www: 38%
1С-Bitrix14%non-www: 48% / www: 50%
Shopify4%non-www: 82%
Tilda/Wix/no-code8%non-www: 71%
Custom PHP/Django/Rails31%non-www: 65%

Why It Matters

  • No SEO difference between www and non-www — Google ranks equally. Choice is stylistic
  • 3% with both versions — duplicate content. Google picks canonical itself but 5-10% equity lost
  • 302 redirect (9% of users) does NOT transfer link equity. Always use 301
  • Legacy www sites don't need mass migration — keep them. But new project — non-www default
  • Choice affects cookie sharing: www + foo.example.com = cookies don't cross (if not .example.com)

Methodology

Top-1M Tranco + top-5k .ru by SimilarWeb (March 2026). For each domain: curl -I http://example.com + http://www.example.com + https://example.com + https://www.example.com. Canonical = final URL after all 301s. Both-version detection: both responses 200 without Location.

Redirect ChainsEach extra redirect adds 100-300ms latency and reduces PageRank along the chain.
HTTP to HTTPSVerify the redirect is performed correctly without intermediate unencrypted hops.
Redirect LoopsCircular redirects cause ERR_TOO_MANY_REDIRECTS error and complete page unavailability.
301 vs 302 Codes301 permanently passes PageRank, 302 is a temporary redirect without passing SEO weight.

Why teams trust us

10+
redirect hops
HTTPS
redirect check
<2s
result
301/302
redirect codes

How it works

1

Enter URL

2

Redirect chain followed

3

Codes & final URL shown

Redirect checker: optimize redirect chains

Incorrect or long redirect chains slow down the site, lose PageRank and confuse search crawlers. The tool visualizes the full redirect chain with response codes and timing for each hop.

Full hop chain

Shows each redirect step: URL → code → URL → code, through to the final destination.

Time per hop

Measures latency at each redirect step for precise identification of performance bottlenecks.

Redirect type

Distinguishes 301, 302, 303, 307, 308 — each has different behavior for SEO and browsers.

Loop detection

Automatically detects circular redirects and warns before the browser throws an error.

Who uses this

SEO

redirect chain audit

Developers

301/302 debugging

DevOps

HTTPS redirect check

Marketers

UTM link tracking

Common Mistakes

Chains of 3+ redirectsHTTP → HTTPS → non-www → www — that's three redirects instead of one. Merge them into a single direct redirect.
Using 302 instead of 301302 for permanently moved pages means losing PageRank. Use 301 for final migrations.
Redirecting HTTP to HTTP before HTTPSAn intermediate unencrypted hop creates an MITM vulnerability and adds an extra request.
Not updating internal linksRedirects are not a substitute for updated links. Links to original URLs should be updated directly.

Best Practices

Use one redirect: HTTP+www → HTTPS+non-wwwConfigure a single nginx/Apache rule combining both conditions into one 301 redirect.
Check redirects after migrationsDomain change, HTTPS migration, URL structure redesign — all create new redirect chains.
Remove stale redirectsRedirects accumulated over years create hidden chains. Audit .htaccess and configs quarterly.
Control redirects in sitemapSitemap should only contain final URLs without redirects — otherwise crawlers waste crawl budget.

Get more with a free account

Redirect check history and API for automated chain auditing.

Sign up free

Learn more

Frequently Asked Questions

www or non-www — better for SEO?

No difference since 2014. Google treats them equally. What matters is consistency + 301 redirect of one to the other.

What to pick for a new site?

2026 default: non-www (shorter, modern). Exception: if you have many subdomains and cookies across the tree — use www (cookies on .example.com work for every subdomain except www.).

What's wrong with both versions live?

Duplicate content, split backlinks, PageRank loss. Google picks canonical itself but you lose control.

How to verify my canonicalisation?

<a href="/en/redirects">Enterno Redirects Checker</a> — enter the domain, see chain + canonical target.