使用 python 创建简易的 http 服务传递文件

本文最后更新于:2024年10月26日 晚上

python 快速搭建简易 http 服务器

1、cd 命令到你想要起服务的目录

1
2
cd /var/www/html
/*仅举例*/

2、在终端运行

1
2
3
python3.8 -m http.server 7777(python3)

python3.8 -m SimpleHTTPServer 6666(python2)

请将上面的四位数数字端口号替换成你想要的端口,不出意外你会得到

image-20230311111120223

这样就是正常的了。

3、连接

Linux 系统下:
如果你是虚拟机,请使用 ifconfig 查询到你的 ip,然后用 你查询到的 ip: 端口 进行连接;
如果你是公网服务器,直接使用 你的公网 ip: 端口 即可(请记得开放你所需要的端口)

Win 的话,查询 ip 请使用 ipconfig
连接操作和上面一致

连接效果如下

image-20230311111615917


使用 python 创建简易的 http 服务传递文件
https://4rozen.github.io/archives/notes/22192.html
作者
4rozeN
发布于
2023年6月25日
许可协议