Forum Discussion

1 Reply

  • I think the only way to really do this would be to use a STREAM profile to replace your original string (

    abc.com/xxdgg/ddeeff/fffgg/eertdsd/eee
    ) with the desired string (
    abc.com/finance
    ) in the response. Then you need to update the request matching host
    abc.com
    and uri matching
    finance
    and set the URI to
    /xxdgg/ddeeff/fffgg/eertdsd/eee
    (using
    HTTP::uri "/xxdgg/ddeeff/fffgg/eertdsd/eee"
    ) and setting the host to
    abc.com
    if it needs to be changed (using
    HTTP::host "abc.com"
    )