Forum Discussion
Pav_70755
Apr 01, 2011Nimbostratus
Host re-direct except for directory?
I've been trying to use this re-direct to re-direct a main domain e.g. www.oil.com to www.test.com/abc but I dont want www.oil.com/ger to re-direct
Here is what I've been trying to use but when I ...
Joel_Moses
Apr 01, 2011Nimbostratus
Try this:
when HTTP_REQUEST {
Check if domain is "www.domain.com"
if {[string tolower [HTTP::host]] eq "www.oil.com"}{
Check if URI isn't /specialdirectory
switch -glob [string tolower [HTTP::uri]] {
"/ger" -
"/ger/" -
"/ger/*" {
Exit this event from this iRule
return
}
default {
Redirect everything else to the following
HTTP::redirect "http://www.test.com/abc"
}
}
}
}
Update: Whoops. Shouldn't try typing fast before I've had my coffee. Missed a closed bracket and quotes.Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects