返回

Firebase动态链接添加带有重定向的自定义域

发布时间:2022-03-15 18:49:55 359

想象一下我的网站https://somesite.com

我用Firebase建立了一个新的子域:join.somesite.com当我转到Firebase上的动态链接页面时(https://console.firebase.google.com/u/1/project/somesite-app/durablelinks),我可以用“添加此子域”;添加URL前缀";。它找到了。

接下来,我需要更新firebase。json。目前我有默认设置:

{
  "hosting": {
    "public": "public",
    "ignore": [
      ...
    ],
    "appAssociation": "AUTO",
    "rewrites": [
      {
        "source": "!/app/**",
        "destination": "/index.html"
      },
      {
        "source": "/app/**",
        "dynamicLinks": true
      }
    ]
  }
}

正如你所见,它将阻止任何动态链接被生成join.somesite.com/xhfj677我需要这个。

我如何更新这些规则,让它允许我?

我在想:

"rewrites": [
      {
        "source": "!somesite.com/app/**",
        "destination": "/index.html"
      },
      {
        "source": "/app/**",
        "dynamicLinks": true
      },
      {
        "source": "!join.somesite.com/**",
        "destination": "/index.html"
      },
      {
        "source": "join.somesite.com/**",
        "dynamicLinks": true
      }
    ]

但事实并非如此。

特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
相关帖子