sitemap.xml 带有 hreflang 标签 - 命名空间不正确

sitemap.xml with hreflang tags - incorrect namespace

这是我的格式 sitemap.xml

<?xml version="1.0" encoding="UTF-8"?>
<urlset
    xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
    xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
    xmlns:xhtml="https://www.w3.org/1999/xhtml"
    xsi:schemaLocation="https://www.sitemaps.org/schemas/sitemap/0.9
        https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
    <loc>https://example.com</loc>
    <xhtml:link 
               rel="alternate"
               hreflang="en-us"
               href="https://example.com" />
    <xhtml:link 
               rel="alternate"
               hreflang="en-gb"
               href="https://example.com/uk/" />
    <xhtml:link 
               rel="alternate"
               hreflang="x-default"
               href="https://example.com" />
</url>
</urlset>

但是,搜索控制台一直给我错误提示,它在第 10 行的命名空间不正确。

我也尝试过这里提供的解决方案:XSD For Sitemap with HREFLANG

但我在这方面遇到了同样的错误。我做错了什么?

事实证明,Google 不喜欢 xmlns:xhtml="https://www.w3.org/1999/xhtml" 是 HTTPS。

将它变成 non-HTTPs 似乎解决了这个问题,即

<urlset
    xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
    xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
    xmlns:xhtml="http://www.w3.org/1999/xhtml"
    xsi:schemaLocation="https://www.sitemaps.org/schemas/sitemap/0.9
        https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>

它确实摆脱了浏览器视图中的默认 XML 样式,但站点地图得到验证。我想如果需要,可以使用 XSL 自定义样式。