Were you able to solve this one? As Dennis said, there are a few articles on path inspection and redirection on the community .You should be able to set up something like
if( string.contains( $path,"PSFT/peoplesoft/tsre" ){ $path = string.replace( $response, "PSFT/peoplesoft/tsre", "PSFT/HRsoft/tsre" ); http.setPath( $path );
}
There are other string.replace() and setPath() combinations which you could use, but they should then hep you ChangeSite() - also if you are also managing both prod.com and test.com on the same vTM, then you may also be able to set rules on test.com to set the URL change after the redirection, if yoiu prefer to keep them as separate actions.
... View more