我的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
答案 0 :(得分:2)
您必须在href
文件中设置index.html
属性。
<base href="/application/folder/">
但要知道所有文件都必须与此路径相关。
希望这会有所帮助!!