Skip to content

Commit 6ce9ff1

Browse files
authored
Merge pull request #204577 from JackStromberg/patch-73
308 should be 303
2 parents 011e27c + ae43136 commit 6ce9ff1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/application-gateway/redirect-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ A common redirection scenario for many web applications is to support automatic
1919
A redirect type sets the response status code for the clients to understand the purpose of the redirect. The following types of redirection are supported:
2020

2121
- 301 (Moved permanently): Indicates that the target resource has been assigned a new permanent URI. Any future references to this resource will use one of the enclosed URIs. Use 301 status code for HTTP to HTTPS redirection.
22+
- 303 (Permanent redirect): Indicates that the target resource has been assigned a new permanent URI. Any future references to this resource should use one of the enclosed URIs.
2223
- 302 (Found): Indicates that the target resource is temporarily under a different URI. Since the redirection can change on occasion, the client should continue to use the effective request URI for future requests.
2324
- 307 (Temporary redirect): Indicates that the target resource is temporarily under a different URI. The user agent MUST NOT change the request method if it does an automatic redirection to that URI. Since the redirection can change over time, the client ought to continue using the original effective request URI for future requests.
24-
- 308 (Permanent redirect): Indicates that the target resource has been assigned a new permanent URI. Any future references to this resource should use one of the enclosed URIs.
2525

2626
## Redirection capabilities
2727

0 commit comments

Comments
 (0)