follow my heart...
分类: Python/Ruby
2009-03-14 16:46:41
|
当然,这个server只能在localhost下面运行.但是却可以提供静态页面显示.
再看一个稍微复杂的.
|
上例,先创建了个tcp的server,不过,采用simple http request handler作为其handler.这样一来,你可以用网内的机子来访问这个web server了.有一点要注意,就是你的html文件目录和当前的脚本所在目录是一致的.
再往后看:
|
这个例子较上例是,可以设定html所在的目录.
如果不想用socketServer,可以直接用BaseHttpServer,他继承自SocketServer.
|
chinaunix网友2009-03-16 21:22:31
another way ~$ python -m SimpleHTTPServer Serving HTTP on 0.0.0.0 port 8000 ... localhost.localdomain - - [16/Mar/2009 21:20:50] "GET / HTTP/1.1" 200 -
chinaunix网友2009-03-16 21:15:41
quick and dirty way python -c "import SimpleHTTPServer ; SimpleHTTPServer.test()" Serving HTTP on 0.0.0.0 port 8000 ... localhost.localdomain - - [16/Mar/2009 21:14:16] "GET / HTTP/1.1" 200 - localhost.localdomain - - [16/Mar/2009 21:14:17] code 404, message File not found