平时给内网的同事分享个文件,直接用python启动一个http服务,方便又简洁:
python3:
python -m http.server [port] 默认端口为8000
python2:
python -m SimpleHTTPServer [port]