You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.3 KiB

  1. From 6c7351bdd0778bc171a2b54faed058eadc8c9d0d Mon Sep 17 00:00:00 2001
  2. From: Baptiste Assmann <bedis9@gmail.com>
  3. Date: Mon, 3 Aug 2015 11:42:50 +0200
  4. Subject: [PATCH 06/13] DOC: typo in 'redirect', 302 code meaning
  5. 302 means a temprary move, not a permanent one
  6. (cherry picked from commit ea849c0cca63b1b56c9c36f9c3504caa5e826816)
  7. ---
  8. doc/configuration.txt | 2 +-
  9. 1 file changed, 1 insertion(+), 1 deletion(-)
  10. diff --git a/doc/configuration.txt b/doc/configuration.txt
  11. index 64697a4..e8d8b2a 100644
  12. --- a/doc/configuration.txt
  13. +++ b/doc/configuration.txt
  14. @@ -5443,7 +5443,7 @@ redirect scheme <sch> [code <code>] <option> [{if | unless} <condition>]
  15. is desired. Only codes 301, 302, 303, 307 and 308 are supported,
  16. with 302 used by default if no code is specified. 301 means
  17. "Moved permanently", and a browser may cache the Location. 302
  18. - means "Moved permanently" and means that the browser should not
  19. + means "Moved temporarily" and means that the browser should not
  20. cache the redirection. 303 is equivalent to 302 except that the
  21. browser will fetch the location with a GET method. 307 is just
  22. like 302 but makes it clear that the same method must be reused.
  23. --
  24. 2.4.6