icamys / php-sitemap-generator

A simple PHP sitemap generator.
MIT License
168 stars 65 forks source link

Wrong format for alternate language link generated #23

Closed raulrebane closed 3 years ago

raulrebane commented 3 years ago

Currently the generator outputs <link rel="alternate" hreflang="en" href="... This does work for google search, but does not work for Yandex. In Yandex I get tons of errors because of this. Searching for this I found that link must be <xhtml:link rel="alternate" hreflang="de" href= for more details please see google instructions https://developers.google.com/search/docs/advanced/crawling/localized-versions

icamys commented 3 years ago

@raulrebane Thanks for the link! Much appreciated. I'll take a look at this today.

icamys commented 3 years ago

@raulrebane Just fixed it in 4.3.1. Please check that out.

raulrebane commented 3 years ago

Great. I will try it out tomorrow and see if its ok.

raulrebane commented 3 years ago

Confirmed. Works as expected. Thanks mate.