res.location()

Sets the “Location” response header to the specified URL expression (url).

Usage

res.location(url);

Example

  1. res.location('/foo/bar');
  2. res.location('foo/bar');
  3. res.location('http://example.com');
  4. res.location('../login');
  5. res.location('back');

Notes

  • You can use the same kind of URL expressions as in res.redirect().