Because I always forget the rule for redirecting requests that Fiddler receives while listening on port 8888 here it is below:
static function OnBeforeRequest(oSession: Session) {
//other statements
if (oSession.host == "localhost:8888") { oSession.host = "localhost:80" }
}
... where you can change localhost:80 to where the request needs to be redirected to
No comments:
Post a Comment