您可以在 Angular 的“routes”数组中,为PrerenderController添加一个“Path Location Strategy”,然后在“index.html”文件中添加一个重定向标签,将所有具有额外斜杆的请求重定向到没有斜杆的URL。以下是示例代码:
在app.module.ts中,为PrerenderController添加PathLocationStrategy:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { LocationStrategy, PathLocationStrategy } from '@angular/common';
import { PrerenderController } from './prerender';
@NgModule({
imports: [BrowserModule],
providers: [
{ provide: LocationStrategy, useClass: PathLocationStrategy },
PrerenderController
]
})
export class AppModule { }
在 "index.html" 文件中添加重定向标记:
My App
在这个代码示例中,我们将重定向标签插入到了“index.html”中。如果页面的URL以“//”结尾,重定向标签会将页面重定向到没有斜杆的URL。例如,将会把"example.com//"重定向到"example.com"。