1---
2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
3SPDX-License-Identifier: curl
4Long: post303
5Help: Do not switch to GET after following a 303
6Protocols: HTTP
7Added: 7.26.0
8Category: http post
9Multi: boolean
10See-also:
11  - post302
12  - post301
13  - location
14Example:
15  - --post303 --location -d "data" $URL
16---
17
18# `--post303`
19
20Tells curl to violate RFC 7231/6.4.4 and not convert POST requests into GET
21requests when following 303 redirections. A server may require a POST to
22remain a POST after a 303 redirection. This option is meaningful only when
23using --location.
24