ローカルでのWebサイト作成に役立つPythonのWebサーバ SimpleHTTPServer / http.server
Python 2
$ python -m SimpleHTTPServer 8000
Python 3
$ python -m http.server 8000
起動時のディレクトリがDocumentRoot control + Z で終了
ポート転送
sudo ipfw add 100 fwd 127.0.0.1,8000 tcp from any to me 80
もとに戻すには $ sudo ipfw list で通し番号を確認して $ sudo ipfw delete *****