我想将一些get请求重定向到/hello-world
之类的地方,并使用angular4路径处理/hello-world
地址。
我写了这个,但它无法正常工作:
app.get("/hi", (req, res) => {
res.redirect('/hello-world')
});
Angular说:
Http failure response for http://localhost:4200/hello-world: 404 Not Found
但是当我通过http://localhost:4200/hello-world
时,它会给我200并显示正确的结果!