我想向Google展示分页实现中页面之间的关系。因此,我想在head
中添加以下代码块:
<link rel="prev" href="https://www.example.com/article?story=abc&page=1" />
<link rel="next" href="https://www.example.com/article?story=abc&page=3" />
当我把它添加到一个变量或者用一个函数使它动态化时,它在我的Next.js
应用程序中的head
中没有显示。
例如:
const pageRelationships = `<link rel="prev" href="https://www.example.com/article?story=abc&page=1" /><link rel="next" href="https://www.example.com/article?story=abc&page=3" />`
在head
中实现:
<Head>
{pageRelationships}
</Head>
您对如何在head
中插入代码块有什么建议吗?
1条答案
按热度按时间wlwcrazw1#
您可以使用以下代码:
或者这个: