firebase.json 在 / 之后使用同一页面从一个域重定向到另一个域
firebase.json redirect from one domain to another with the same page after /
我想从这个域重定向。com/webpage 到那个域。com/webpage
我试过将这些 glob 用于源匹配:
/*
/**
*
**
这是我现在的 firebase.json:
{
"hosting": {
"public":".",
// Add the "rewrites" section within "hosting"
"rewrites": [ {
"source": "/**",
"destination": "https://thisdomain.com/**"
} ]
}
}
我希望访问那个域的人。com/webpage 被重定向到这个域。com/webpage。
重写在一个站点内使用,它们不会跨多个站点重写。
如果您将这两个域作为自定义域映射到 Firebase 托管项目,则不需要额外的设置。不过,您 do 需要将每个 domain/target 映射到 public
目录。参见 https://firebase.google.com/docs/hosting/multisites#define_hosting_config
我想从这个域重定向。com/webpage 到那个域。com/webpage
我试过将这些 glob 用于源匹配:
/*
/**
*
**
这是我现在的 firebase.json:
{
"hosting": {
"public":".",
// Add the "rewrites" section within "hosting"
"rewrites": [ {
"source": "/**",
"destination": "https://thisdomain.com/**"
} ]
}
}
我希望访问那个域的人。com/webpage 被重定向到这个域。com/webpage。
重写在一个站点内使用,它们不会跨多个站点重写。
如果您将这两个域作为自定义域映射到 Firebase 托管项目,则不需要额外的设置。不过,您 do 需要将每个 domain/target 映射到 public
目录。参见 https://firebase.google.com/docs/hosting/multisites#define_hosting_config