我如何处理从现有页面到 index.js 文件中另一个页面的 301 重定向

How show I handle a 301 redirect from an existing page to another page in my index.js file

大家好,周五快乐!我只是想找出处理节点中从现有文件到另一个文件的 301 重定向的最佳方法。假设我有一个名为 /contact

的文件
router.get('/contact', function (req, res) {
  res.render('contact');
});

如果我想将用户从该文件重定向到 wordpress 上的新路径,即 /to/contact 我应该这样做吗?

router.get('/to/contact', function (req, res) {
  res.redirect(301).('contact');
});

我尝试对此进行研究,但不确定如何处理此处的显式重定向。这有点令人困惑。谢谢!

你混淆了两条路线:

router.get('/contact', function (req, res) {
  res.redirect(301, '/to/contact');
});