我正在使用Gatsby
,我想建立一个单页网站,所以没有创建页面。为此,我gatsby-node.js
使用以下代码进行了编辑:
exports.onCreatePage = async ({ page, actions }) => {
const { createPage } = actions
if (page.path === "/") {
page.matchPath = "/*"
createPage(page)
}
}
在这种情况下,每个请求都会重新路由到index.js
唯一的页面。然后,在index.js
我的页面中:
const IndexPage = () => {
const intl = useIntl()
const locale = intl.locale
return (
<BGTState>
<BlogState>
<Layout>
<Router>
<Home path={`${locale}/`} />
<Section path={`${locale}/:sectionSlug`} />
<Collection path={`${locale}/:sectionSlug/:collectionSlug`} />
<Season
path={`${locale}/:categorySlug/:collectionSlug/:seasonSlug`}
/>
<Product
path={`${locale}/:categorySlug/:collectionSlug/:seasonSlug/:prodSlug`}
/>
<Blog path={`${locale}/blog`} />
<Article path={`${locale}/blog/:articleSlug`} />
<NotFound default />
</Router>
</Layout>
</BlogState>
</BGTState>
)
}
如您所见,我有不同的路由器根据 url 加载特定组件。我已经为每个区域添加path
了当前语言环境的前缀以匹配正确的路径。此机制仅适用于主页,但对于其他链接不起作用。事实上,如果我访问类似:
http://localhost:3001/en/category-home/prod-foo
必须加载Collection
组件,站点只需重定向到:
http://localhost:3001/en
并再次显示该Home
组件。
我做错了什么?
更新
页面结构:
正如你所看到的,我只index.js
处理了我在gatby-node.js
. 如果我删除本地化插件,至少使用此配置:
{
resolve: `gatsby-plugin-intl`,
options: {
// Directory with the strings JSON
path: `${__dirname}/src/languages`,
// Supported languages
languages: ["it", "en", "ci", "fr"],
// Default site language
defaultLanguage: `it`,
// Redirects to `it` in the route `/`
//redirect: true,
// Redirect SEO component
redirectComponent: require.resolve(
`${__dirname}/src/components/redirect.js`
),
},
},
而且我没有在 url 前面加上前缀intl.locale
,一切正常。但是添加redirect: true
插件配置,并在链接前加上语言环境,站点将我重定向到主组件。