Firebase重写基于子域

时间:2017-05-03 18:04:06

标签: firebase-hosting

我在firebase上有一个项目。我想使用域名和子域名如下:

example.com: rewrite to index-landing.html
app.example.com: rewrite to index.html

这可能吗?我在firebase.json的托管部分尝试了以下内容:

"rewrites": [
  {
    "source": "https://example.com",
    "destination": "/index-landing.html"
  },
  {
    "source": "https://app.example.com/**",
    "destination": "/index.html"
  }
]

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

我有同样的问题。我认为只重写支持目录而不是子域。简单的解决方案是创建两个不同的Firebase项目。

答案 1 :(得分:1)

据我所知,这是可能的。我在尝试找到解决方案时发现了这篇非常好的文章/视频:https://fireship.io/lessons/deploy-multiple-sites-to-firebase-hosting/