我已成功将angular5应用程序部署到:
http://myApp.s3domain.amazonaws.com
Angular路由器会自动将我转到http://myApp.s3domain.amazonaws.com/home
我的应用是以这样的方式构建的,参数的使用方式如下:http://myApp.s3domain.amazonaws.com/home/uniqueParameter
此重定向到我的error.html
,而不是链接。它在本地工作。
如何实现正确的深层链接?
答案 0 :(得分:0)
我通过使用firebaseapp并将firebase.json
设置为
{
"hosting": {
"public": "dist",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
现在有效。