我在我的角应用程序中使用HTML5模式来关闭hashbangs,这是因为我将为我的用户提供以下网址:
而不是:
后者有效但对虚荣网址来说并不理想。
由于没有编写我自己的NodeJS应用程序来解决这个问题,Firebase中是否有任何可以使用的内容?
答案 0 :(得分:16)
Firebase刚刚发布了包含此功能的最新更新。您可以在firebase.json中使用它:
"rewrites": [ {
"source": "**",
"destination": "/index.html"
} ]
这是他们的文档中使用的代码示例,并将任何未找到的目录或文件发送回index.html。
请务必注意,您需要将firebase部署工具更新为version 1.1.0 or higher才能实现此目的:
$ npm update -g firebase-tools
根据您的权限,您可能需要使用“sudo”。
您可以在此处阅读文档:https://www.firebase.com/docs/hosting/guide/url-redirects-rewrites.html
您可以在此处阅读有关更新firebase工具的信息:https://www.firebase.com/docs/hosting/guide/command-line-tool.html