你怎么能 运行 http.server 没有端口而只是在本地主机上?
How can you run http.server without a port and simply on localhost?
我通常通过输入 http.server
开始
python3 -m http.server port
我可以通过 localhost:port
访问服务器
我的目标是通过简单地输入 localhost
.
来访问服务器
总是有端口...默认是 80,所以只要 运行 它在 80 上,你就可以通过本地主机访问它。
我通常通过输入 http.server
开始
python3 -m http.server port
我可以通过 localhost:port
我的目标是通过简单地输入 localhost
.
总是有端口...默认是 80,所以只要 运行 它在 80 上,你就可以通过本地主机访问它。