命令行输入:
$ python -m SimpleHTTPServer 8000
8000为默认的端口,浏览器起输入http://localhost:8000/
,能看到满满都是爱吗?
Ruby也可以一行解决:
ruby -run -e httpd . -p 8888
PHP也可以
php -S localhost:8000
php -S localhost:8000 -t /data/www
很多应用中,都会进行URL重写,所以PHP提供了一个设置路由脚本的功能:
php -S localhost:8000 index.php
这样一来,所有的请求都会由index.php来处理。
No comments:
Post a Comment