24-Jan-2021 06:34
My requirement is to block domain redirections for example :
my domain is www.test.com, someone has created domains like www.fun.com and www.rock.com on a external DNS and is redirecting to my domain www.test.com . Is there a way to block these redirects in an iRule.
Kindly advice.
24-Jan-2021
07:25
- last edited on
04-Jun-2023
21:05
by
JimmyPackets
This may help (note I haven't validated this):
when HTTP_REQUEST {
if { [string tolower [HTTP::host]] != "www.test.com" } {
reject
}
}
N