Hi everyone,
I have a question about multilingual blogs and site structure.
Right now, we have the typical subfolder localization structure.
ex:
domain.com/page (english site)
domain.com/ja/page (japanese site)
However, the blog is a slightly more complicated. We'd like to have english posts available in other languages (as many of our users are bilinguals). The current structure suggests we use a typical domain.com/blog or domain.com/ja/blog format, but we have issues if a Japanese (logged in) user wants to view an English page.
domain.com/blog/article would redirect them to domain.com/ja/blog/article thus 404-ing the user if the post doesn't exist in the alternate language.
One suggestion (that I have seen on sites such as etsy/spotify is to add a /en/ to the blog area:
ex
domain.com/en/blog
domain.com/ja/blog
Would this be the correct way to avoid this issue? I know we could technically work around the 404 issue, but I don't want to create duplicate posts in /ja/ that are in English or visa versa. Would it affect the rest of the site if we use a /en/ subfolder just for the blog?
Another option is to use:
domain.com/blog/en
domain.com/blog/ja
but I'm not sure if this alternative is better.
Any help would be appreciated!