1, 开启 http 服务 

os 系统自带 apache 服务, 用命令行:

1
sudo apachectl start

开启 http 服务

2,cd 到要共享的文件夹内, 用命令行

1
python -m SimpleHTTPServer 

在 http 上共享文件夹内容

3, 在浏览器上输入

http://localhost:8000

就可以看到刚共享的内容了