29-Mar-2022 13:29 - edited 29-Mar-2022 14:05
Hello,
Working on a requirement where I need to rewrite SiteA to SiteB but Post changes I want to retain SiteA URL (https://dev.test.domain.com/pathxyz)
Site A - https://dev.test.domain.com/pathxyz
Site B - https://dev.test.domain.com/authentication
I tried below irule, but it shows Site B instead i want Site A to be displayed.
Can some one please suggest me,
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/pathxyz" } {
set uri [string map -nocase {"/pathxyz" "/authentication"} [HTTP::uri]]
HTTP::uri $uri
}
}
Solved! Go to Solution.
29-Mar-2022 23:35
29-Mar-2022 23:35
30-Mar-2022 09:20
Thank you Mayur. Its working using rewrite profile
But i had to add '/' at the end of the URL because while creating the profile F5 would not allow with out '/'