Firebase:重定向后获取路径名

时间:2018-10-12 07:46:26

标签: firebase firebase-hosting

我想创建一个可以在任何路径名上工作的网站,例如domain.com/abcdomain.com/xyz等。

但是我只想从主页上投放。内容将动态生成。

我认为可以使用firebase.json文件,但是我该怎么做?

我尝试过redirect,但是由于未保留路径名,因此无法正常工作。

1 个答案:

答案 0 :(得分:1)

默认情况下,应对此进行配置,但您可以转到这里:

"hosting": {
  // ...

  // Add the "rewrites" attribute within "hosting"
  "rewrites": [ {
    // Serves index.html for requests to files or directories that do not exist
    "source": "**",
    "destination": "/index.html"
  } ]
}

documentation can be found here中的相应部分。

此(rewrites)将从指定的destination提供内容,但 重定向到另一个URL。