本文介绍了如何使用带有Firebase托管的React在SPA上提供robots.txt?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 create-react-app 构建的SPA,并且希望拥有一个如下所示的robots.txt:

I have an SPA built using create-react-app and wish to have a robots.txt like this:

http://example.com/robots.txt

我在:

但是对于Firebase托管,我不确定该怎么做。

But for firebase hosting, I'm not sure what to do.

推荐答案

只需添加在 firebase.json

"rewrites": [
      {
        "source": "/robots.txt",
        "destination": "/robots.txt"
      },
      {
        "source": "**",
        "destination": "/index.html"
      }
]

这篇关于如何使用带有Firebase托管的React在SPA上提供robots.txt?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 08:21