1.nginx安装教程(http://mp.csdn.net/postedit/79603129)
2.php下载安装
- 打开php官网(http://php.net/downloads.php)下载windows版本php
- 可以看到提供了两个版(Non Thread Safe & Thread Safe)本可以下载,两者区别的话大家自己百度了解一下,我这 里就不具体介绍了,因为我们这里用的nginx搭建地服务器,所以建议下载 Non Thread Safe 版本的php
- 下载完成解压之后打开php解压目录
- 在php的目录下可以找到php.ini-development文件,复制一份并将文件名修改为php.ini,然后修改配置文件内容。
; extension_dir = "ext" ,删除前面的分号并修改为:extension_dir = "ext"
;cgi.force_redirect = 1,删除前面的分号:cgi.force_redirect = 1
;cgi.fix_pathinfo=1,删除前面的分号:cgi.fix_pathinfo=1
;cgi.rfc2616_headers = 0,删除前面的分号:cgi.rfc2616_headers = 1 - 命令行下输入如下命令启动php,不报错表示启动成功。
-
D:/software/nmp/php-7.2.3>php-cgi.exe -b 127.0.0.1:9000 -c D:/software/nmp/php-7.2.3/php.ini
检查nginx、php是否安装成功
在D:/wwwroot/test.com下新建一个phpinfo.php,加入如下内容后保存
<?php phpinfo();?>
修改nginx.conf 增加server,也就是虚拟服务器
server { listen 80; server_name ; root /wwwroot/test.com; index index.html index.php; fastcgi_intercept_errors on; location / { try_files $uri $uri/ =404; } location = /50x.html { root /wwwroot/test.com; } location ~ .php$ {
root /wwwroot/test.com; #try_files $uri =404; fastcgi_pass 127.0.0.1:9000; #fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param domain $subdomain; include fastcgi_params; } location ~ /.ht { deny all; } }
重启nginx
打开浏览器访问http://test.com/phpinfo.php
能看到php信息表示安装成功。
如果有遇到提示No input file specified.请尝试把nginx.conf中的
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 改为: fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;