Forum Discussion
Rosieodonell_16
Cirrus
Feb 24, 2015Sharepoint has path/link to another resource
I used the latest Sharepoint iapp to create my sharepoint site to help me replace our Microsoft TMG with the F5. User externally access it from www.company.com (changed name for security purposes). T...
Michael_Jenkins
Cirrostratus
Feb 24, 2015One way you could do that is with a Local Traffic Policy, checking for
URI to be /application/ and then changing the pool to a different pool containing the 10.10.10.2 server.
That would be more efficient than using an iRule, but if you wanted to use an iRule, you could check for the uri /application/ and then change the pool yourself.
when HTTP_REQUEST {
switch -glob -- [string tolower [HTTP::uri]] {
"/application" -
"/application/" {
pool ANOTHER_POOL
}
"*CONTAINS*" {}
"STARTSWITH*" {}
"*ENDSWITH" {}
}
}
With the
switch and the -glob parameter, you can do wildcard searching, so it'd be like using contains or starts_with operators (the latter 3 I put in there are examples).Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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