Fix SEO indexing issue: Update canonical URLs to docs.expanso.io - #134
Closed
aronchick wants to merge 1 commit into
Closed
Fix SEO indexing issue: Update canonical URLs to docs.expanso.io#134aronchick wants to merge 1 commit into
aronchick wants to merge 1 commit into
Conversation
- Changed url config from 'bacalhau.org' to 'docs.expanso.io' - Updated site title and branding to match Expanso documentation - This fixes the dual-canonical bug causing Google to index 0/527 pages The issue was that Docusaurus was generating canonical tags pointing to bacalhau.org while the site is deployed to docs.expanso.io, causing Google to see duplicate content and not index any pages. This change ensures all canonical URLs correctly point to docs.expanso.io where the content is actually hosted.
Contributor
Author
|
Closing this PR as it contains an incorrect canonical URL configuration. This PR was changing canonicals to docs.expanso.io instead of docs.bacalhau.org, which would create SEO issues. Bacalhau docs should have canonicals pointing to their actual deployment location (docs.bacalhau.org or bacalhau.org/docs, depending on current redirect setup). A proper SEO audit and fix will be submitted separately. |
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.
Problem
docs.expanso.io has 527 pages in the sitemap but Google indexes ZERO of them due to a dual-canonical bug.
Root Cause
The Docusaurus config had url: bacalhau.org but the site is deployed to docs.expanso.io. This caused canonical tags to point to wrong domain.
Solution
Impact
This should resolve the 0% indexing rate and allow Google to index all 527 pages properly.