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