Forum Discussion
Alfred_41980
Nimbostratus
Apr 14, 2011Can GTM be configured to redirect uri?
Can GTM be configured to redirect http requests based on uri? For
instance, the uri with http://www.mycompany.com/abc/1234 will be redirected to 1.1.1.2 and http://www.mycompany.com/xyz/1234 will be...
hoolio
Cirrostratus
Apr 14, 2011Hi Alfred,
A GTM WideIP only accepts DNS queries so it wouldn't be able to handle any HTTP requests or redirections. If you have a GTM+LTM combination license (or just an LTM license), you could define an LTM virtual server to inspect the URI and issue HTTP redirects. You can do that with an HTTP class or a simple iRule:
Using an iRule:
when HTTP_REQUEST {
if {[string tolower [HTTP::uri]] eq "/redirect_me"}{
HTTP::redirect "http://[HTTP::host]/new_uri"
}
}
Or using an HTTP class:
profile httpclass uri_redirect_httpclass {
defaults from httpclass
pool none
redirect "http://[HTTP::host]/new_uri"
paths "/redirect_me"
}
Aaron
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
