我的网站上有一个Angular 2应用程序。 此应用程序在身份验证标头中发送一个jwt令牌。
所以我服务器端的服务可以获取此令牌。
到目前为止这是有效的,但如果我的路线是404,它应该重定向到/index.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
</IfModule>
我不是真正的.httaccess专业版我怎么能抓住这个404s
答案 0 :(得分:0)
尝试不是由您的服务器重定向,而是通过角度路由器重定向:
{path: '', component: HomeComponent},
....
{path: '**', redirectTo: ''}//set this at the end of your routes