Forum Discussion

Peter_L_71637's avatar
Peter_L_71637
Icon for Nimbostratus rankNimbostratus
Oct 14, 2013
Solved

Rewrite HTTPS URL

Hi, Is there anyone who can help me with the following problem?   My internal server is configured to access a URL: https://sample.domain.com/soap/ There is no possibility to change the above URL ...
  • John_Alam_45640's avatar
    Oct 14, 2013

    section from reply above. To change the URI, you can have the VIP iRule change that before your forward out. If the server does not respond to redirects like a browser:

    when HTTP_REQUEST { 
      if { [HTTP::uri] equals "/soap" } {
         HTTP::uri "/soap/test" 
      } 
    }