根据域名选择默认语言
Posted
技术标签:
【中文标题】根据域名选择默认语言【英文标题】:Select the default language according the domain name 【发布时间】:2021-08-25 10:17:19 【问题描述】:我想根据域名选择网站的默认语言,例如:
www.test.fr --> 默认语言是法语
www.test.de --> 默认语言是德语
...
那我该怎么做呢?
应用使用next.js开发,后端为symfony 2.6
【问题讨论】:
【参考方案1】:您需要将i18n
配置添加到您的next.config.js
文件中:
// next.config.js
module.exports =
i18n:
// These are all the locales you want to support in
// your application
locales: ['en-US', 'fr', 'nl-NL'],
// This is the default locale you want to be used when visiting
// a non-locale prefixed path e.g. `/hello`
defaultLocale: 'en-US',
// This is a list of locale domains and the default locale they
// should handle (these are only required when setting up domain routing)
// Note: subdomains must be included in the domain value to be matched e.g. "fr.example.com".
domains: [
domain: 'example.com',
defaultLocale: 'en-US',
,
domain: 'example.nl',
defaultLocale: 'nl-NL',
,
domain: 'example.fr',
defaultLocale: 'fr',
,
],
,
docs 中的更多信息和示例。
【讨论】:
以上是关于根据域名选择默认语言的主要内容,如果未能解决你的问题,请参考以下文章