melbahja / seo

🐘 Simple PHP library to help developers 🍻 do better on-page SEO optimization 🤖
https://git.io/phpseo
MIT License
311 stars 47 forks source link

How to add link rel alternate in sitemap tag urlset ? #16

Open lutskboy opened 1 year ago

lutskboy commented 1 year ago

`<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">

https://www.example.com/english/page.html ` see https://developers.google.com/search/docs/specialty/international/localized-versions?hl=ru#sitemap
melbahja commented 1 year ago

Hey,

you can use alternate method, see this for example:

https://github.com/melbahja/seo/blob/22b0b3273bf9c8867cadf018e4daa3e426525929/tests/SitemapsTest.php#L186

lutskboy commented 1 year ago

Thanks