使用 React 和 Google 托管,我如何重定向所有以 /posts/### 结尾的链接,其中 ### 是任何 post id

Using React and Google Hosting, how can I redirect all links that end with /posts/### where ### is any post id

我有一个 React 站点,该站点已设置并用于共享到我的 React 本机应用程序的深层链接。这一切都按预期工作,但是我正在尝试将没有安装该应用程序的人重定向到应用程序商店/游戏商店。

我用于深度链接的 url 如下:

https://example.com/posts/###

有没有一种方法可以定位所有以 /posts/### 结尾的 URL 并在末尾通配 id?

托管在 firebase 上,使用 React 构建。

谢谢!

使用 React Router Redirect 我能够解决问题![​​=12=]

// example
<Router>
  <Switch>
    <Redirect from="/posts/*" to="/getApp" />
    <Route exact path="/getApp" component={GetAppScreen} />
    <Route exact path="/contact" component={ContactScreen} />
     ...
  </Switch>
</Router>