0
我正在使用.net桌面應用程序使用代理向我的網站發出http請求。 當我提出用代理其工作正常http://www.mySite.com請求,但是當我嘗試做一個請求,在例如http://www.mySite.com/someSection.net http請求使用代理404錯誤未找到
當我做不代理它工作正常,這兩種情況的請求,則返回404錯誤。
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(websiteURL);
WebProxy proxy = new WebProxy(@"http://payforexsurf.info", false);
request.Proxy = proxy;
request.Method = "GET";
request.KeepAlive = false;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();