使用pyton在本地指定目录模拟服务器

2023-01-31 00:01:51 指定 服务器 模拟

1.cd 到指定目录

2.运行命令

  python 3之前 

Python -m Simplehttpserver 8888 &

  python 3+ 

python -m Http.server 8888 &

3.运行后:

4.在浏览器输入   http://localhost:8888/.     测试,然后就可以浏览网页

相关文章