1
2022.04.29
私のウェブサイト(Netlify
にホストされている)を検索すると、Googleは存在しないページを表示します。
それはこのように見えます。https://*********.com.tr/Achlamydeae1901520.html
またはhttps://*********.com.tr/Cumar1152083.html
(これらのページは存在しないので、ユーザーは私が作成した404カスタムページにリダイレクトされます)。
私のsitemap.txt
は次のようになります。
https://*********.com.tr/
https://*********.com.tr/about
https://*********.com.tr/companies
https://*********.com.tr/team
https://*********.com.tr/activities
https://*********.com.tr/contact
私の_redirects
ファイルは次のようになります。
/* /index.html 200
私のrobots.txt
ファイルはこのような感じです。
User-agent: Googlebot
Disallow: /nogooglebot/
User-agent: *
Allow: /
Sitemap: https://*********.com.tr/sitemap.txt
私のreact-helmet-async
のメタは次のようになります。
<Helmet>
<title>website title</title>
<meta
name="description"
content="This is a desciption"
/>
<meta
name="keywords"
content="this is the website keywords"
/>
<link rel="canonical" href="/" />
</Helmet>
私のReact router v6
はこのように見えます。
<Router>
<Routes>
<Route path="/" element={<Home />} />
<Route index element={<Home />} />
<Route path="contact" element={<ContactUs />} />
<Route path="companies" element={<OurCompanies />} />
<Route path="team" element={<OurTeam />} />
<Route path="about" element={<AboutUs />} />
<Route path="activities" element={<Activities />} />
<Route path="news" element={<ComingSoon />} />
<Route path="*" element={<Error404 />} />
</Routes>
</Router>
どうすればこの問題を解決できますか?
EDIT : Google Search Consoleで、Coverage
カテゴリに上記の2つのようなURLが3k以上あることが分かりました。