Firebase网站部署

时间:2017-10-12 22:18:00

标签: firebase firebase-hosting

我无法在firebase上托管我的网站。我的文件(包括index.html)已上传到firebase。

当我输入firebase提供的URL时,我收到404错误。但是,如果我输入我的URL并在末尾添加'/ index'就行了。

有关如何解决问题的建议吗?

1 个答案:

答案 0 :(得分:1)

听起来你错过了firebase.json文件中的重写。

"hosting": {
  // Add the "rewrites" section within "hosting"
  "rewrites": [ {
    "source": "/",
    "destination": "/index.html"
  } ]
}

有关配置选项的更多信息,请参阅Firebase hosting documentation