3

出于 SEO 的目的,我被要求在我的 nuxt 项目的每条路线的末尾添加一个斜杠。例如 myapp.com/company 应该是 myapp.com/company/ 在 Nuxt 中是否有一种干净的方法可以做到这一点?

4

2 回答 2

0

好的,我通过在服务器端的中间件中编写重定向找到了解决方案,所以首先我添加到 nuxt.config.js 这个:

serverMiddleware: ["~/servermiddleware/seo.js"],

然后我创建了这个文件 /servermiddleware/seo.js :

const redirects = require('../301.json');
module.exports = function (req, res, next) {
  const redirect = redirects.find(r => r.from === req.url);
  if (redirect) {
    console.log(`redirect: ${redirect.from} => ${redirect.to}`);
    res.writeHead(301, { Location: redirect.to });
    res.end();
  } else {
    next();
  }
}

最后我在根文件夹中的 301.json 中写入我想要的重定向:

[
  { "from": "/company", "to": "/company/" }
]

编辑:问题留在这里,因为应用程序链接的代码内部没有斜线,所以机器人的索引将使用它....我需要找到一个更好的解决方案。

于 2018-09-17T13:17:19.710 回答
0

我也在做这个要求。我使用以下方法完成任务,我不知道它是否正确。

两步:

Nginx 重写 url,即在 url 的末尾添加斜杠 '/',即 url 不是以斜杠结尾的。在这种情况下,http 请求被发送到 Web 服务器。

在另一种情况下,如果请求(或链接路由)在前端进行路由,则该请求不会向 Web 服务器发送 http 请求。然后添加一个名为 addSlash.js 的中间件文件,如下所示:

function isThereSlashEnd(path) {
  let isSlash = true
  if (path) {
    let length = path.length
    isSlash = path[length-1] == '/' ? true : false
    console.log('??? path222: ', path, path[length-1], isSlash)
  }
  return isSlash
}
export default function({ req, store, route, redirect }) {

  /**
   * Add slash of '/' at the end of url
   */
  let isSlash = isThereSlashEnd(route.fullPath)
  console.log('??? path111: ', isSlash, route.fullPath, process.client)
  if (!isSlash) {
    if (process.client) {
      window.location.href = route.fullPath + '/'
      console.log('??? path: ', isSlash, route.fullPath, process.client, window.location)
    }
  }
}

通过以上两个步骤,完成任务。

于 2018-11-23T08:03:27.673 回答