fix: redirect /blog to www.zerodev.app/blog - #93
Open
dewanshparashar wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
/blog to www.zerodev.app/blog
There was a problem hiding this comment.
Pull request overview
Redirects all /blog routes to the main ZeroDev blog while preserving query strings.
Changes:
- Adds
/blogas a prefix redirect tohttps://www.zerodev.app/blog. - Removes
/blogfrom SPA fallback handling.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
/blog to www.zerodev.app/blog/blog to www.zerodev.app/blog
The docs blog duplicates www.zerodev.app/blog. Post slugs differ between the two, so all /blog paths 301 to the blog index.
dewanshparashar
force-pushed
the
zer-906-add-redirects-for-old-docs-blog
branch
from
August 21, 2026 10:37
5e48b99 to
0ebe589
Compare
/blog to www.zerodev.app/blog
dewanshparashar
marked this pull request as ready for review
August 21, 2026 10:41
jayeshbhole
approved these changes
Aug 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
docs.zerodev.app/blogduplicates the website blog and still gets organic search traffic. This 301s /blog and everything under it to https://www.zerodev.app/blog.Post slugs differ between the two blogs, so all paths go to the blog index rather than guessing per-post mappings. Verified locally: /blog, /blog/, and /blog/anything all return 301 with the query string preserved.
Part of ZER-906