16-Jun-2020 16:04
Is it possible to use iRule to have redirect for following requirement?
https://*.abc.com ---> https://*.xyz.com
where * can be any name and should be retain in redirecting to xyz.com
Ex. https://education.abc.com ----> https://education.xyz.com
https://review.abc.com ---> https://review.xyz.com
17-Jun-2020
01:09
- last edited on
04-Jun-2023
21:25
by
JimmyPackets
Try below irule which will solve redirection issue.
when HTTP_REQUEST {
HTTP::redirect "https://[string tolower [getfield [HTTP::host] "." 1].xyz.com"
}