You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Google suggests to create one <url> section for every path including the localized versions. At this current moment, next-sitemap only generates <url> sections for the default locale paths and this increases the number of lines in the sitemap N times relative to non-localized sitemap, where N is the number of supported languages. On the other hand, Google's approach would cause the number of lines to be (N^2)-rupled. next-sitemap does not create those duplicate entries, but that makes me worried about whether such approach will result in bad international SEO. Now the question is: "should I be concerned?"
How next-sitemap handles this situation (pseudocode):
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Google suggests to create one
<url>
section for every path including the localized versions. At this current moment,next-sitemap
only generates<url>
sections for the default locale paths and this increases the number of lines in the sitemap N times relative to non-localized sitemap, where N is the number of supported languages. On the other hand, Google's approach would cause the number of lines to be (N^2)-rupled.next-sitemap
does not create those duplicate entries, but that makes me worried about whether such approach will result in bad international SEO. Now the question is: "should I be concerned?"How
next-sitemap
handles this situation (pseudocode):What Google expects me to do:
Here's the article on Google Developers' Portal:
https://developers.google.com/search/docs/advanced/crawling/localized-versions
Here's my
next-sitemap
config:Beta Was this translation helpful? Give feedback.
All reactions