我有一个反应网站,但没有谷歌搜索引擎优化

问题描述 投票:0回答:1

我有一个react项目,我上传到render,它是一个简单的react逻辑,像往常一样,有1个div, 当搜索诸如网站上下文之类的内容而不仅仅是网站名称时,如何确保网站的上下文将在 SEO 中并在 google 中找到它?

这就是我的 index.html 的样子:

<!doctype html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <link rel="icon" type="image/svg+xml" href="./src/assets/img/logo.ico" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Sixerr - Freelance Services Marketplace</title>
</head>

<body>
  <div id="root"></div>
  <script type="module" src="/src/index.jsx"></script>
  <script src="https://kit.fontawesome.com/5339eb0f7c.js" crossorigin="anonymous"></script>
</body>

</html>

这是 index.jsx 的样子:

const root = ReactDOM.createRoot(document.getElementById('root'))
root.render(
  <Provider store={store}>
    <Router>
      <RootCmp />
    </Router>
  </Provider>
)
reactjs web seo
1个回答
0
投票

您可以使用 google Lighthouse chrome 扩展

进行检查

只需安装 Lighthouse,在 Chrome 中打开您的网站,单击生成报告,然后查看 SEO 选项卡: enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.