建立一個簡單的 Http 伺服器
要在本地網路中共享檔案或託管簡單網站(http 和 javascript),你可以使用 Python 的內建 SimpleHTTPServer 模組。Python 應該在你的 Path 變數中。轉到檔案所在的資料夾並鍵入:
對於 python 2
:
$ python -m SimpleHTTPServer <portnumber>
對於 python 3
:
$ python3 -m http.server <portnumber>
如果未給出埠號,則 8000
是預設埠。所以輸出將是:
在 0.0.0.0 埠 8000 上提供 HTTP …
你可以通過鍵入 http://hostipaddress:8000/
,通過連線到本地網路的任何裝置訪問你的檔案。
hostipaddress
是你的本地 ip 地址,可能以 192.168.x.x
開頭。
要完成模組,只需按 ctrl+c.
即可