Forum Discussion
jrosales2000_10
May 03, 2011Nimbostratus
Yes, the exact irule (copied and pasted, just modified url):
when HTTP_REQUEST {
Check if the request is for the root document
if {[HTTP::path] eq "/" }{
Check the Host header
switch [string tolower [HTTP::host]] {
"devsmk.landrover.ourwebsite.com" {
HTTP::uri "/landrover/vin.aspx"
}
"devsmk.jaguar.ourwebsit.com" {
HTTP::uri "/jag/vin.aspx"
}
}
}
}