我有一个基于Angular 7 + nginx的网站www.mysite.com
。
在路由模块中,我有此角度应用程序的默认路由:
{ path: '', redirectTo: '/index', pathMatch: 'full' }
所以当我去www.mysite.com
时,我得到了www.mysite.com/index
。
但是当我到达一些不存在的路线时,例如www.mysite.com/oops
,我得到的是www.mysite.com
而不是它的索引页。
以下是我的nginx设置:
location / {
try_files $uri $uri/ /index.html =404;
}
有什么想法吗?