我有一个Firebase项目,我在其中配置了静态托管。我有两个域test1.domain.com
和test2.domain.com
,都在控制面板中配置。每个都有一个A记录,指向配置期间显示的给定服务器IP地址。
如果没有任何配置,浏览这两个域将分别提供index.html
目录的public
。
.
├── .firebaserc
├── firebase.json
└── public
├── 404.html
├── index.html
├── test1.domain.com
│ └── index.html
└── test2.domain.com
└── index.html
下面是我想要实现的示例伪代码,有效地将单个主机空间分成两部分。换句话说,test1.domain.com
处的任何URI资源都将提供该子目录中的相应内容。同样适用于test2.domain.com
"rewrites": [
{
"source": "https://test1.domain.com/**",
"destination": "/test1.domain.com/**"
},
{
"source": "https://test2.domain.com/**",
"destination": "/test2.domain.com/**"
}
]
这是可能的,如果是这样的话?