Forum Discussion
4 Replies
Sort By
- Colin_Walker_12Historic F5 Account1. Replacing a header does just that, it replaces any header you specify. You could replace the host header or a custom header, or the Location header in a response, etc. The HTTP::redirect command issues a redirect to the client, causing them to initiate a new connection to the specified host & URI.
- Robert_47833AltostratusHI,
- hooleylistCirrostratusHi Jucao,
GET / HTTP/1.1 User-Agent: curl/7.20.1 (i686-pc-cygwin) libcurl/7.20.1 OpenSSL/0.9.8r zlib/1.2.5 libidn/1.18 libssh2/1.2.5 Host: www.google.com My-Custom-Header: aaa-bbb Accept: */*
GET / HTTP/1.1 User-Agent: curl/7.20.1 (i686-pc-cygwin) libcurl/7.20.1 OpenSSL/0.9.8r zlib/1.2.5 libidn/1.18 libssh2/1.2.5 Host: www.google.com My-Custom-Header: bbb-bbb Accept: */*
- Robert_47833AltostratusGET / HTTP/1.1