【发布时间】:2020-08-16 21:59:35
【问题描述】:
网站可以正常打开,我可以毫无问题地导航到不同的页面。但是,当我打开主页并点击刷新按钮时,网站会中断并返回以下消息
{"seek":"21598","duration":"1:00:08"}
我不确定是什么原因造成的。因为任何其他页面都不是这样。
您可以点击HERE
查看网站我的应用路由如下所示:
const routes: Routes = [
{path: '', redirectTo: '/home', pathMatch: 'full'},
{path: 'home', component: HomeComponent},
*** Other Routing
{path: '**', redirectTo: '/home', pathMatch: 'full'}
];
我的.htaccess文件如下
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(.*) /index.html [NC,L]
【问题讨论】:
标签: angular typescript routes angular-routing