QuestionQ75
Identify and Resolve LTM Device IssuesA new web application is hosted at www.example.net; however, some clients still point to the legacy web application at www.example.com.
Which iRule enables clients that reference www.example.com to access the new application?
- A when HTTP_REQUEST { if {[HTTP::host] equals "www.example.*" }{ HTTP::redirect "http://www.example.net" } }
- B when HTTP_REQUEST { if {[HTTP::host] equals "www.example.com" }{ HTTP::redirect "http://www.example.net" } }
- C when HTTP_DATA { if {[HTTP::host] equals "www.example.*" }{ HTTP::redirect "http://www.example.net" } }
- D when HTTP_RESPONSE { if {[HTTP::host] equals "www.example.com" }{ HTTP::redirect "http://www.example.net" }
Community Discussion