登录 注册
当前位置:主页 > 资源下载 > 9 > 在Gatsby中实现重定向至具有元刷新标签的HTML文件,可采用gatsby-plugin-meta-redirect插件

在Gatsby中实现重定向至具有元刷新标签的HTML文件,可采用gatsby-plugin-meta-redirect插件

  • 更新:2024-10-23 19:25:20
  • 大小:7KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

gatsby-plugin-meta-direct 生成用于在任何静态文件主机上进行重定向的meta重定向html文件。 安装 npm install --save gatsby-plugin-meta-redirect 或者 yarn add gatsby-plugin-meta-redirect 如何使用 // In your gatsby-config.js plugins: [ `gatsby-plugin-meta-redirect` // make sure to put last in the array ] ; 重新导向 您可以使用操作创建重定向。 一个例子: createRedirect ( { fromPath : '/old-url' , toPath : '/new-url' , isPermanent : true } ) ; createRedire