基于子域的 Firebase 重写

Firebase rewrite based on subdomain

我在 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"
  }
]

有什么想法吗?

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

据我所知,这现在是可能的。我在尝试寻找解决方案时发现这非常好 article/video:https://fireship.io/lessons/deploy-multiple-sites-to-firebase-hosting/