摘要: 程序基本实现了对http的完整转发,目前暂不支持https windows需要在设置中的网络>代理设置为手动,并开启代理服务器,填写ip和端口 // httpForward package main import ( "fmt" "io" "io/ioutil" "net/http" "os" "strconv" "string... 阅读全文
posted @ 2019-06-18 17:16 波士地盘 阅读(4839) 评论(0) 推荐(0) 编辑
摘要: 直接使用 net.http 包,非常方便 // staticWeb package main import ( "fmt" "net/http" "strconv" ) //传入url参数、静态文件存放目录、监听的端口号 func StaticRunServer(urlPath string, filePath string, port int) { http.... 阅读全文
posted @ 2019-06-18 15:04 波士地盘 阅读(836) 评论(0) 推荐(0) 编辑