我正在从Powershell运行SimpleHTTPServer。

python -m SimpleHTTPServer 8080

我想退出(控制+中断)服务器而不关闭终端。有任何想法吗?

在此先感谢您的任何建议

最佳答案

^ C将其关闭(控件+ c)

我的示例测试控件+ c发送中断并退出:

PS C:\> python -m http.server 8080
Serving HTTP on 0.0.0.0 port 8080 ...

Keyboard interrupt received, exiting.

注意,我使用的是http.server,因为它代替了Python 3中的SimpleHTTPServer,但对您来说应该可以正常使用。

10-06 03:44