如何在 google 搜索中更改我网站的标题?

How can i change the title of my website in google search?

我试图在 google 搜索中更改我网站的标题,但我似乎找不到如何操作。我看到了一些关于 react-helmet 的内容,但我不知道如何在我的文件中使用它。我正在尝试更改我的网站和页面的标题和描述。我在 react.js 中制作了网站,并将其托管在 apache2 上。

更改 React 应用程序 index.html 文件中的标题和描述,然后重新构建应用程序。

  <head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
  name="description"
  content="**Web site created using create-react-app**"
/>


<title>React App</title>

希望这对您有所帮助。让我知道这是否适合你。