Exam 1Y0-240 All QuestionsBrowse all questions from this 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?

    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
CalyfasOption: B

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

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