Angular 2路由删除了原始URL的大部分内容

时间:2017-02-28 21:06:42

标签: angular

我的ASP.NET Web应用程序的子文件夹中有一个小的HTML页面。 URL如下所示:

https://company.com/application/folder/index.html

当我在任何浏览器中加载页面并且脚本包完成加载时,URL将更改为:

http://company.com/#/home

我如何保留原始网址?我期待看到这个:

https://company.com/application/folder/index.html#home

1 个答案:

答案 0 :(得分:2)

您必须在href文件中设置index.html属性。

<base href="/application/folder/">

但要知道所有文件都必须与此路径相关。

希望这会有所帮助!!