Citrix ADC 13 Administrator — Question 49
How can a Citrix Administrator configure a rewrite policy to change the version of HTTP from HTTP 1.1 to HTTP 1.0 in every request?
Answer options
- A. add rewrite action RW_ACT replace http.res.version "\"HTTP/1.1\"" add rewrite policy RW_POL true RW_ACT
- B. add rewrite action RW_ACT replace http.req.version "\"HTTP/1.1\"" add rewrite policy RW_POL true RW_ACT
- C. add rewrite action RW_ACT replace http.res.version "\"HTTP/1.0\"" add rewrite policy RW_POL true RW_ACT
- D. add rewrite action RW_ACT replace http.req.version "\"HTTP/1.0\""
Correct answer: B
Explanation
The correct answer is B because it specifically replaces the HTTP version in the request (`http.req.version`) from HTTP 1.1 to HTTP 1.0. Option A incorrectly targets the response version instead of the request. Option C also targets the response version and uses the wrong version. Option D does not include the necessary policy binding to apply the action correctly.