0
我通常通過鍵入 python3 -m http.server port
開始http.server
,我可以去localhost:port
如何在沒有端口的情況下運行http.server,只需在localhost上運行?
我的目標訪問服務器是通過簡單地輸入localhost
訪問srver。
我通常通過鍵入 python3 -m http.server port
開始http.server
,我可以去localhost:port
如何在沒有端口的情況下運行http.server,只需在localhost上運行?
我的目標訪問服務器是通過簡單地輸入localhost
訪問srver。
總是有端口......默認是80,所以只需在80端口運行它,你就可以通過本地主機訪問它。
我輸入'python3 -m http.server 80'並得到了'PermissionError:[Errno 13] Permission denied' – Clone
通過在前面添加'sudo'來解決它。感謝您的幫助! – Clone