1、下载好对应版本的nginx、php,下载好后将php文件夹下的php.ini-development重命名为php.ini,然后将php文件夹、nginx文件夹存放于d盘wnmp(新建)目录下;
2、配置nginx虚拟主机:a、在nginx.conf的http中新增“include vhost/*.conf;”一行配置;b、在nginx/conf新建vhost文件夹,用于存放虚拟主机相关配置文件信息;c、新建虚拟主机配置文件,如:
在nginx\html下新建项目目录api,然后在api下新建index.php文件,新建配置文件名称为dev.api.com.conf的文件,.conf前面的部分需与server_name相同。
server {
listen 80;
server_name dev.api.com;
error_log logs/dev.api.com.log debug;
root html/api;
#入口文件
index index.php;
#路由重写
location /{
try_files $uri $uri/ /index.php$is_args$args;
}
#加载php
location ~ \.php$ {
root html/api/public;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
3、在C:\Windows\System32\drivers\etc\host中配置本地host,如:127.0.0.1 dev.api.com.conf
4、以管理员身份运行nginx.exe文件;以管理员身份打开windows命令行,切换到wnmp\php运行php-cgi.exe -b 127.0.0.1:9000 -c D:\wnmp\php\php.ini;
5、在浏览器输入dev.api.com即可访问nginx\html\api\index.php文件。
转载于:https://my.oschina.net/czlxili/blog/819118