WAMP环境下配置Virtual hosts
    使用本地开发时,一开始都会将项目放在一个公共目录下即DocumentRoot。但这样做随着项目的增多,就会产生小小问题,,管理起来显得不直观,麻烦。为了方便管理和测试,可以配置虚拟的本地网址;    那该如何配置达到这个效果?        一、本机DNS解析实现     修改windows的hosts     C:/WINDOWS/system32/drivers/etc/hosts     127.0.0.1      l
....
WAMP环境搭建之Apache无法正常启动
    若是按照http://www.dangbingren.com/Article/index/aid/57.shtml的方式安装的apache,apache显示如图的话:    很可能的原因是你的80端口被占用了,需要手动修改apache的默认端口:Apache\conf\httpd.conf        将80修改为8080(若是8080也被使用,可再进行更换,可参考使用端口区间:1024--65535).....
WAMP环境搭建之APACHE配置
    Apache官网如是说:‘The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.Apache httpd was launched in 1995, has been the most popular web server on the Internet since April 1996, and celebrates its 20th birthday as a project this February.T
....
WAMP环境搭建之PHP选择
    前段时间下载了一个PHP5.4包,装环境的时候怎么配置也不管用,于是研究一下PHP的版本,但看里面一看才发现,里面根本就没有php5apache2_2.dll.    再看PHP的版本php-5.4.38-nts-Win32-VC9-x86,原来是nts VC9版本,于是在此分享一下php版本的选择注意事项:    1.nts  Non Thread Safe 非线程安全,在执行时不进行线程(Thread)安全检查。    2.ts  Thread Safe 线程安全,在执行时进行线程安全检查,以防止有新
....