Has anyone come across this issue? We are trying to rewrite URIs to weblogic via an LTM with this rule:
when HTTP_REQUEST {
if { [HTTP::host] equals {f51}} {
HTTP::uri {http://websiteB:8040/path/}
}
}the
rewrite works fine, except that (when I analyzed it with wget) it rewrites using https instead of http. I know the common requirement is to divert http to https but I did NOT request https; http is what I have in my rule:
wget -S
http://f51/--2010-05-14 10:01:08--
http://f51/Resolving f51... 10.0.0.0
Connecting to f51|10.0.0.0|:80... connected.
HTTP request sent, awaiting response...
HTTP/1.1 302 Moved Temporarily
Date: Fri, 14 May 2010 16:01:08 GMT
Location:
https://f51/errorpages/404.shtml Content-Type: text/html
Set-Cookie: JSESSIONID=LtzGJxBvhL7N7pBRnphPC9tCljLXzn6P1MJ0bpcbhYjk6r2Lp52P!-131925596; path=/
Connection: Close
Set-Cookie: BIGipServerpool1=753416202.17955.0000; path=/
Location:
https://f51/errorpages/404.shtml [following]
--2010-05-14 10:01:08--
https://f51/errorpages/404.shtmlConnecting to f5westest1|10.0.0.0|:443... connected.
Unable to establish SSL connection.
Any help would be appreciated.