Firebase重定向到相同的路径名

时间:2018-07-26 17:28:38

标签: firebase firebase-hosting

如何在Firebase JSON文件中添加脚本或类似内容以重定向到具有相同路径的其他域。

例如:我的用户当前正在访问mydomain.com/help/page_id_1

page_id_1是动态ID。

我想重定向到support.mydomain.com/help/page_id_1

我可以以此作为firebase.json文件中的重定向吗?

1 个答案:

答案 0 :(得分:1)

是的!看起来像这样:

{
  "hosting": {
    "redirects": [{
      "source": "/help/:page",
      "destination": "https://support.mydomain.com/help/:page",
      "type": 301
    }]
  }
}