firebase.json从一个域重定向到另一个域,在/之后

时间:2019-04-11 16:39:45

标签: firebase firebase-hosting

我想从thisdomain.com/webpage重定向到thatdomain.com/webpage

我尝试将以下这些glob用于源匹配:

/*
/**
*
**

这是我当前的firebase.json:

 {
    "hosting": {
    "public":".",
    // Add the "rewrites" section within "hosting"
        "rewrites": [ {
            "source": "/**",
            "destination": "https://thisdomain.com/**"
        } ]
     }
}

我希望将访问该domain.com/webpage的人重定向到thisdomain.com/webpage。

1 个答案:

答案 0 :(得分:0)

重写是在一个站点内使用的,它们不会在多个站点之间进行重写。

如果您将两个域都作为自定义域映射到Firebase Hosting项目,则不需要其他设置。不过,您要做需要将每个域/目标映射到public目录。参见https://firebase.google.com/docs/hosting/multisites#define_hosting_config