I have a .net C# page that redirects to an absolute url, eg:
Response.Redirect("rtsp://myvideoServer.com/myVideoAddress.mp4?ticket=1234&dt=1234");
But after the redirecting it results in:
"http://m.mysite.com/rtsp://myvideoServer.com/myVideoAddress.mp4?ticket=1234&dt=1234"
It works fine if I write the url to an HTML page and click the address. But the redirection does that mess.
The most weird is that it worked before last version.
Do you have any ideas? I'm almost doing a workaround to solve that.