1Y0-240 Exam QuestionsBrowse all questions from this exam

1Y0-240 Exam - Question 65


Scenario: A Citrix Administrator configured the Responder policy to redirect the request for root page to the home page.

However, after executing the command, the webpage access entered a loop, as shown in the second screenshot.

Click on the Exhibit button to view the screenshots.

How will the administrator rectify this issue?

Show Answer
Correct Answer: B

The issue is occurring because the Responder policy expression is too broad and matches all URL requests, causing a loop. To rectify the issue, the policy should specifically match only the root page. Changing the Responder Policy expression to `HTTP.REQ.URL.EQ("/")` ensures the redirect only happens when the request is precisely for the root page ("/"). This prevents the redirection loop by avoiding matching all URLs.

Discussion

2 comments
Sign in to comment
CalyfasOption: B
Nov 23, 2020

It seems answer B is correct, however, it's lacking a piece of the syntax. The following expression is correct: "HTTP.REQ.URL.EQ(\"/\")"

andrea_86Option: B
Oct 7, 2020

Why http.REQ.URL.EQ("/")? The root path not is "\"?