Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Peter_L_71637's avatar
Peter_L_71637
Icon for Nimbostratus rankNimbostratus
12 years ago
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
    12 years ago

    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" 
      } 
    }