测试python HTTPServer功

2023-01-31 01:01:21 python 测试 HTTPServer
#基本Http
python -m Basehttpserver 8080


如果当前目录有index.html 则可以直接显示

#简单HTTP 包含GET与HEAD请求
Python -m SimpleHTTPServer 8080
#HTTP 包含POST请求 当前
python -m CGIHTTPServer 8080

已sh脚本为CGI程序的语言 如下: 当前目录下新建cgi-bin目录

#!/bin/bash
echo "Content-Type: text/html" # HTML is following
echo ""
echo "<H1>This is my first CGI script</H1>"
echo "Hello, world!"

for((i=1;i<=100;i++))
do
   echo $i
done


访问地址

http://localhost:8000/cgi-bin/index.sh

将输入shell脚本内容

相关文章