F5 is upgrading its customer support chat feature on My.F5.com. Chat support will be unavailable from 6am-10am PST on 1/20/26. Refer to K000159584 for details.

Forum Discussion

3 Replies

  • You can always do a redirect to a page of your choice using an iRule. I would suggest to do it on the HTTP_RESPONSE event. You will need to look for the /vdesk/hangup.php3 page in the HTTP_REQUEST and set a flag for the response to send to a different page.

     

    Hope this helps you get in the right direction.

     

    Seth

     

  • Hi, Something like this might help you out.

    when HTTP_REQUEST {
      if {[HTTP::uri] contains "/vdesk/hangup.php3" }{
        set logoff 1
      } else {
        set logoff 0
      }
    }
    
    when HTTP_RESPONSE {
      if { $logoff == 1 }{
        HTTP::redirect https://new.redirect.com
      }
    }