Forum Discussion
monica_74227
Oct 28, 2009Nimbostratus
how to do HTTP header replace with iRule
Hey guys,
well, the client wants to use special string to replace the http response header's host string. could you help me to check the following iRule or correct it
when HTTP_RESPONS...
hooleylist
Oct 28, 2009Cirrostratus
There is no Host header in HTTP responses. What is the customer trying to achieve? Do they want to change the hostname displayed in the browser address bar? If so, you'd want to send the client an HTTP redirect instead of rewriting a header in the response. Other possibilities are:
- The customer wants to rewrite a redirect in a 30x response.
In that case you could use an iRule like this: http://devcentral.f5.com/wiki/default.aspx/iRules/RewriteHTTPRedirectHostname.html
- The customer wants to rewrite the host header in the request without the client seeing the change. In that case, you could use a very similar iRule to what you posted:
when HTTP_REQUEST {
if { [HTTP::header host] eq "www.abc.com" } {
HTTP::header replace Host "www.xyz.com"
}
}
Aaron
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