Every published page on help.beamable.com declares a canonical URL pointing at the GitHub Pages hostname rather than the customer-facing one:
<link rel="canonical" href="https://beamable.github.io/Docs/Unity-6.0/">
So help.beamable.com tells search engines that beamable.github.io is the authoritative copy of its own content, splitting search authority between two hostnames. This is independent of the ReadMe.io situation and is a live SEO bug today.
It also undercuts the ReadMe sunset: transferring search authority away from beamable2.readme.io is much harder when the intended destination disclaims itself.
The cause is almost certainly site_url: https://beamable.github.io/Docs/ in mkdocs.yml, which Material uses to build canonical links. Present on every content branch, so the fix is a one-line change per branch — but check first whether anything else depends on site_url (sitemap generation does), and confirm help.beamable.com is the intended permanent hostname rather than a redirect that might change.
Small enough for a single session once that is confirmed, hence bite-size.
Every published page on
help.beamable.comdeclares a canonical URL pointing at the GitHub Pages hostname rather than the customer-facing one:So
help.beamable.comtells search engines thatbeamable.github.iois the authoritative copy of its own content, splitting search authority between two hostnames. This is independent of the ReadMe.io situation and is a live SEO bug today.It also undercuts the ReadMe sunset: transferring search authority away from
beamable2.readme.iois much harder when the intended destination disclaims itself.The cause is almost certainly
site_url: https://beamable.github.io/Docs/inmkdocs.yml, which Material uses to build canonical links. Present on every content branch, so the fix is a one-line change per branch — but check first whether anything else depends onsite_url(sitemap generation does), and confirmhelp.beamable.comis the intended permanent hostname rather than a redirect that might change.Small enough for a single session once that is confirmed, hence
bite-size.