惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
IT之家
IT之家
C
Check Point Blog
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
F
Fortinet All Blogs
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your Vercel Redirect Is Backwards and Google Is Ignoring ...
Ted · 2026-05-24 · via DEV Community

Ted

A week after launching this blog I had one page indexed — the homepage. Every post showed "URL is unknown to Google." No crawl attempts, no impressions, no signal at all.

The site scored 100 on all Core Web Vitals. Sitemap was submitted to GSC on day one. Content was real. There was no obvious technical failure anywhere.

The actual cause: Vercel had www.tedagentic.com set as the primary domain and was redirecting tedagentic.com to it. My GSC property was tedagentic.com. That single configuration mismatch broke the entire indexing chain silently.


What the misconfiguration looks like

Vercel lets you attach multiple domains to a project. One is primary — it serves the content. The others redirect to it. The default when you add both www and non-www is often to make www the primary.

In my case:

tedagentic.com       → 307 redirect → www.tedagentic.com
www.tedagentic.com   → 200 (primary, serves content)

Enter fullscreen mode Exit fullscreen mode

The browser doesn't care. You type tedagentic.com, land on www.tedagentic.com, read the post. Everything looks fine.

Google cares.


Why this kills indexing

The problem compounds across three layers:

1. GSC property mismatch

My Google Search Console property was tedagentic.com (non-www). The site was actually serving from www.tedagentic.com. GSC tracks coverage per property. Pages Google found at www. weren't being credited to the non-www property I was monitoring.

2. Sitemap URLs were wrong

The sitemap is generated dynamically from site.url in the codebase. That value was set to https://tedagentic.com — but because the site was redirecting there, Astro was sometimes resolving the build-time base URL to the www version. The live sitemap was serving this:

<loc>https://www.tedagentic.com/posts/how-to-set-up-local-ai-agent/</loc>

Enter fullscreen mode Exit fullscreen mode

Google downloaded the sitemap from tedagentic.com/sitemap.xml, saw URLs pointing to www.tedagentic.com, and hit contradictory signals on every entry: the sitemap said www, the canonical said non-www, the GSC property was non-www, and the domain had no trust history to resolve the ambiguity. 47 submitted, 0 indexed.

3. Canonical tags contradicted the sitemap

The canonical tags in the HTML were correct — pointing to tedagentic.com. But the sitemap was pointing to www.tedagentic.com. Google had two signals contradicting each other with no clear authority signal to break the tie. On a new domain with no trust built up, it appeared to just stop.


The diagnosis

Run these three checks on any new site before assuming it's a crawl delay:

Check the redirect chain:

curl -sI https://yourdomain.com | grep -E "HTTP|location"
curl -sI https://www.yourdomain.com | grep -E "HTTP|location"

Enter fullscreen mode Exit fullscreen mode

You want yourdomain.com to return 200 and www.yourdomain.com to 308 redirect to yourdomain.com — or the reverse, consistently, as long as it matches your GSC property.

Check sitemap URLs match your canonical domain:

curl -s https://yourdomain.com/sitemap.xml | grep "<loc>" | head -5

Enter fullscreen mode Exit fullscreen mode

Every URL in the sitemap should use the same domain as your GSC property. No exceptions.

Check your GSC property:

Go to GSC and confirm whether you added tedagentic.com or www.tedagentic.com as the property. Then confirm your sitemap URLs and canonical tags use that exact version. All three must match.


The fix

Step 1 — Flip the Vercel redirect via API:

TOKEN="your-vercel-token"
TEAM="your-team-id"
PROJECT="your-project-id"

# Remove both domains
curl -X DELETE "https://api.vercel.com/v9/projects/${PROJECT}/domains/yourdomain.com?teamId=${TEAM}" \
  -H "Authorization: Bearer $TOKEN"

curl -X DELETE "https://api.vercel.com/v9/projects/${PROJECT}/domains/www.yourdomain.com?teamId=${TEAM}" \
  -H "Authorization: Bearer $TOKEN"

# Re-add with correct direction
curl -X POST "https://api.vercel.com/v10/projects/${PROJECT}/domains?teamId=${TEAM}" \
  -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" \
  -d '{"name":"yourdomain.com"}'

curl -X POST "https://api.vercel.com/v10/projects/${PROJECT}/domains?teamId=${TEAM}" \
  -H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" \
  -d '{"name":"www.yourdomain.com","redirect":"yourdomain.com","redirectStatusCode":308}'

Enter fullscreen mode Exit fullscreen mode

Step 2 — Fix the site URL in code and redeploy:

Make sure site.url (or equivalent) matches exactly, commit, and push. Vercel will rebuild the sitemap with correct URLs.

Step 3 — Resubmit sitemap and request indexing:

service.sitemaps().submit(
    siteUrl='sc-domain:yourdomain.com',
    feedpath='https://yourdomain.com/sitemap.xml'
).execute()

Enter fullscreen mode Exit fullscreen mode

Then use the URL Inspection API or GSC manually to request indexing on your key posts.


What it cost

Roughly 6 days of early crawl and indexing momentum on a new domain. The site looked healthy the entire time — no errors in GSC, no warnings, no failed crawls. The mismatch was invisible until I ran the redirect check and compared it against the GSC property.

On a new domain, early crawl signals matter more than on an established one. Google is deciding how much trust to extend. A canonical inconsistency during that window is harder to recover from than it would be six months in.

The fix took ten minutes once diagnosed. The diagnosis took a week because there was no visible error to chase.


Quick checklist for new sites on Vercel

  • [ ] Confirm which domain is primary in Vercel (Settings → Domains)
  • [ ] Confirm GSC property matches that exact domain (www vs non-www)
  • [ ] Confirm sitemap <loc> URLs use the same domain
  • [ ] Confirm canonical tags in HTML use the same domain
  • [ ] Verify with curl -sI that the redirect direction is correct
  • [ ] Use 308 (permanent) not 307 (temporary) for the www redirect