2015-12-18

Run Python SimpleHTTPServer

Run simple HTTP server with python.

on Python 2.x
$ python -m SimpleHTTPServer 8000

on Python 3.x
$ python http.server 8000

Run above command in the folder where a testindex.html file reside.
In the browser type http://localhost:8000/testindex.html



No comments:

Post a Comment