location.d 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: location
  4. Short: L
  5. Help: Follow redirects
  6. Protocols: HTTP
  7. Category: http
  8. Example: -L $URL
  9. Added: 4.9
  10. See-also: resolve alt-svc
  11. ---
  12. If the server reports that the requested page has moved to a different
  13. location (indicated with a Location: header and a 3XX response code), this
  14. option will make curl redo the request on the new place. If used together with
  15. --include or --head, headers from all requested pages will be shown. When
  16. authentication is used, curl only sends its credentials to the initial
  17. host. If a redirect takes curl to a different host, it will not be able to
  18. intercept the user+password. See also --location-trusted on how to change
  19. this. You can limit the amount of redirects to follow by using the
  20. --max-redirs option.
  21. When curl follows a redirect and if the request is a POST, it will send the
  22. following request with a GET if the HTTP response was 301, 302, or 303. If the
  23. response code was any other 3xx code, curl will re-send the following request
  24. using the same unmodified method.
  25. You can tell curl to not change POST requests to GET after a 30x response by
  26. using the dedicated options for that: --post301, --post302 and --post303.
  27. The method set with --request overrides the method curl would otherwise select
  28. to use.