我正在尝试重定向我的测试版应用程序。当我打开主页时,它应该被重定向到另一个页面。我正在使用window.location,app.component但它首先开始加载组件然后重定向,所以它看起来有点奇怪。
ngOnInit(): void {
this.location = String(window.location);
console.log('this.location);
if (this.location === 'http://localhost:4200/home') {
window.location.replace('https://www.google.com/');
}
}