Forum Discussion
Craig_Freyman_1
Nimbostratus
Nov 07, 2005Masking URL
So I've got a number of VIP's going into the BIGIP. Each VIP has a URL associated with it. We use these different URLs to manipulate the traffic in different ways before the traffic is sent back to ...
unRuleY_95363
Nov 10, 2005Historic F5 Account
No, more like this:
when HTTP_REQUEST {
HTTP::header replace Host conference2.telept.com
}
when HTTP_RESPONSE {
if {[HTTP::cookie exists BREEZESESSION]} {
HTTP::cookie name BREEZESESSION domain telept.com
}
}The other approach would be:
when HTTP_REQUEST {
set orig_host [HTTP::host]
HTTP::header replace Host conference2.telept.com
}
when HTTP_RESPONSE {
if {[HTTP::status] >= 300 and [HTTP::status] < 400 } {
set location [HTTP::header Location]
regsub {.*\.telept\.com} $location $orig_host location
HTTP::header replace Location $location
}
}Note: I have not personally tested any of this...
Good luck.
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
