我在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"
}
]
有什么想法吗?
答案 0 :(得分:2)
我有同样的问题。我认为只重写支持目录而不是子域。简单的解决方案是创建两个不同的Firebase项目。
答案 1 :(得分:1)
据我所知,这是可能的。我在尝试找到解决方案时发现了这篇非常好的文章/视频:https://fireship.io/lessons/deploy-multiple-sites-to-firebase-hosting/