DOC: typo: req.uri is now replaced by capture.req.uri

A configuration example was not updated after the switch from req.uri to
capture.req.uri.

backport: 1.5 and above
(cherry picked from commit c8f0e78b25287afd29627217bb67a7053af46518)
(cherry picked from commit 83f84932a1ba54dbab95081219f1bbc3925107c5)
diff --git a/doc/configuration.txt b/doc/configuration.txt
index 3fac562..57a62da 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -5505,8 +5505,8 @@
         redirect scheme https if !{ ssl_fc }
 
   Example: append 'www.' prefix in front of all hosts not having it
-        http-request redirect code 301 location www.%[hdr(host)]%[req.uri] \
-          unless { hdr_beg(host) -i www }
+        http-request redirect code 301 location \
+          www.%[hdr(host)]%[capture.req.uri] unless { hdr_beg(host) -i www }
 
   See section 7 about ACL usage.