wiziple / gatsby-plugin-intl

Gatsby plugin that turns your website into an internationalization-framework out of the box.
http://gatsby-starter-default-intl.netlify.com
325 stars 178 forks source link

SEO impact: Site has two entry points / and /en #92

Closed mmueller1589 closed 4 years ago

mmueller1589 commented 4 years ago

Hello,

my site has two entry points / and /en. This is my setting:

{
  resolve: `gatsby-plugin-intl`,
  options: {
    path: `${__dirname}/src/intl`,
    languages: ['en'],
    defaultLanguage: 'en',
    redirect: false,
  },
}

In addition i use the plugin gatsby-plugin-sitemap. On the sitemap the pages are listed twice / an /en. Since the pages are identical it will impact SEO.

Any ideas how to solve the issue?

Best regards,

MM

mmueller1589 commented 4 years ago

Since I have only one language I did this in my config: languages: []