Firebase 托管:提供来自不同自定义域的不同页面
Firebase hosting: Serve different pages from different custom domains
我们在 firebase 托管上使用自定义域:我们的应用程序由 index.html 提供,在 app.example.com 上运行良好。我们还连接了 www.example.com,它也为应用程序提供服务。
问题是:在 www.example.com 我希望能够托管一个简单的静态页面。有没有办法在重写中配置它?我们可以很容易地在部署中输出一个额外的 html 文件,在 index.html.
旁边
有什么想法吗?
我们的firebase.json:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Firebase 托管目前不支持单个项目中的多个站点。但是,您可以为静态登录页面创建第二个项目并将其部署到那里,将其连接到 www
域,同时让应用程序域连接到另一个项目。
截至 2018 年 8 月,Firebase 托管支持单个项目上的多个站点!有关详细信息,请参阅 the docs。
我们在 firebase 托管上使用自定义域:我们的应用程序由 index.html 提供,在 app.example.com 上运行良好。我们还连接了 www.example.com,它也为应用程序提供服务。
问题是:在 www.example.com 我希望能够托管一个简单的静态页面。有没有办法在重写中配置它?我们可以很容易地在部署中输出一个额外的 html 文件,在 index.html.
旁边有什么想法吗?
我们的firebase.json:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Firebase 托管目前不支持单个项目中的多个站点。但是,您可以为静态登录页面创建第二个项目并将其部署到那里,将其连接到 www
域,同时让应用程序域连接到另一个项目。
截至 2018 年 8 月,Firebase 托管支持单个项目上的多个站点!有关详细信息,请参阅 the docs。