ExamGecko
Home Home / F5 / 301b
Question list
Search
Search

List of questions

Search

Related questions











Question 39 - 301b discussion

Report
Export

A new web application is hosted at www.example.net, but some clients are still pointing to the legacy web application at www.example.com.

Which iRule will allow clients referencing www.example.com to access the new application?

A.
when HTTP_REQUEST { if {[HTTP::host] equals 'www.example.*' }{ HTTP::redirect 'http://www.example.net' } }
Answers
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' } }
Answers
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' } }
Answers
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' } }
Answers
D.
when HTTP_RESPONSE { if {[HTTP::host] equals 'www.example.com' }{ HTTP::redirect 'http://www.example.net' } }
Suggested answer: B
asked 24/09/2024
Sydney Taing
33 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first