06-Oct-2020 09:02
Disclaimer, I know little to nothing about creating iRules, hence why I am here.
I need to create the following iRule.
create an irule that will inspect the URI of the incoming request and make a "routing" decision.
https://abc.mike.com/abc1 proxy to https://help.mike.com/abc1
https://abc.mike.com/abc2 proxy to https://help2.mike.com/abc2
any other URI proxy to https://abc2.mike.com
Thanks for any help
Mike
Solved! Go to Solution.
06-Oct-2020 09:12
Hi Mike,
when HTTP_REQUEST {
if { [HTTP::host] equals "abc.mike.com" } {
switch [HTTP::uri] {
"/abc1" { HTTP::redirect https://help.mike.com/abc1 }
"/abc2" { HTTP::redirect https://help2.mike.com/abc2 }
default { HTTP::redirect https://abc2.mike.com }
}
}
}
06-Oct-2020 09:12
Hi Mike,
when HTTP_REQUEST {
if { [HTTP::host] equals "abc.mike.com" } {
switch [HTTP::uri] {
"/abc1" { HTTP::redirect https://help.mike.com/abc1 }
"/abc2" { HTTP::redirect https://help2.mike.com/abc2 }
default { HTTP::redirect https://abc2.mike.com }
}
}
}
06-Oct-2020 09:42
You make it look simple, that would have been 3wweks and a bottle of Tums for me, thank you.