res.location()
Sets the "Location" response header to the specified URL expression (url
).
res.location(url);
res.location('/foo/bar');
res.location('foo/bar');
res.location('http://example.com');
res.location('../login');
res.location('back');
- You can use the same kind of URL expressions as in
res.redirect()
.