google 控制台节点中的站点地图 xml

Sitemap xml in node for google console

我正在尝试在 Google Search Console 添加站点地图。

我有这个代码:

路线

router.get("/sitemap", function(req, res){
   res.render("sitemap.ejs");
});

Sitemap.ejs

<html>
<head>
    <title>Sitemap</title>
    <link rel="alternate" type="application/rss+xml" title="" href="sitemap.xml" />
</head>
<body>

</body>
</html>

但是当我尝试将站点地图添加到 google 时,它说站点地图不能采用 html 格式。

如何使其对 Google Search Console 有效?

解决方案

var path = require("path");
router.get('/sitemap.xml', function(req, res) {
  res.sendFile(path.join(__dirname, 'path', 'sitemap.xml'));
});