Forum Discussion
Jan 28, 2021
Hi skeenter,
Add this line all affected iRules.
if { [HTTP::has_responded] } { return }
when HTTP_REQUEST {
if { [HTTP::has_responded] } { return }
elseif { [HTTP::host] equals "wwwapple.removed.com" && [string tolower [HTTP::uri]] starts_with "/pears" } {
HTTP::respond 307 Location "https://oranges.com[HTTP::uri]"
return
}
}