AngularJS HTML5Mode

前端之家收集整理的这篇文章主要介绍了AngularJS HTML5Mode前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的角应用程序中使用HTML5模式来关闭hashbangs,这是因为我将为我的用户提供以下URL:

http://myapp.com/nicklewis

而不是:

http://myapp.com#/nicklewis

后者有效,但它不适合虚荣URL.

由于没有编写我自己的NodeJS应用程序来解决这个问题,Firebase中是否可以使用或不使用?

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

原文链接:https://www.f2er.com/angularjs/143233.html

猜你在找的Angularjs相关文章