When using Fiddler, it pops up an alert dialog.
Fiddler has detected a protocol violation in session #14. The Request\'s Host header did not match the URL\'
You can do this with rules.
Go into Customize rules, and find the function: OnBeforeRequest(oSession: Session)
OnBeforeRequest(oSession: Session)
Then add the following as the last line of that function:
if (oSession.HostnameIs("proxy.music.pp.com")) { oSession.host = "119.147.22.41"; }