0


Windows下配置Nginx和PHP

之前在Windows开发php项目用的是phpstudy,好用的很。但是phpstudy好久没有更新了,感觉PHP像没有人再用了一样。但是PHP拿来开发小系统,还是很高效的,今天记录如何在Windows环境下配置Nginx和PHP。

1. 配置nginx

Nginx软件下载解压后,样子如下图:
在这里插入图片描述

进入到conf目录,反手就给nginx.conf保存一个副本,然后去修改nginx.conf配置文件。
在这里插入图片描述

加一个index.php上去
在这里插入图片描述

location / {
    root   html;
    index  index.php index.html index.htm;}

加上这部分配置

location ~ \.php$ {
    root           html;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    include        fastcgi_params;}

CMD直接到D:\nginx-1.24.0目录下

nginx.exe

在这里插入图片描述

2. 配置PHP

直接去官网https://windows.php.net/下载一个适合个人计算机适合的php软件
在这里插入图片描述

下载本地解压后,反手就复制一份php.ini-development改成文件名为php.ini
在这里插入图片描述
打开php.ini后就是一顿改,把下面这个配置前面的注释给去咯

cgi.fix_pathinfo=1

在这里插入图片描述
CMD来到D:\php-8.2.24-Win32-vs16-x64目录就是一顿ctrl+c/ctrl+v输出

php-cgi.exe -b 127.0.0.1:9000

3. 测试

最后来到D:\nginx-1.24.0\html目录,创建了一个index.php文件
在这里插入图片描述
index.php文件输入看家本领

<?phpphpinfo();?>

浏览器输入localhost,屏幕赫然输出hello world,说明这个Windows的Nginx+PHP就可以使用了。
在这里插入图片描述
在这里插入图片描述

标签: windows nginx php

本文转载自: https://blog.csdn.net/rulaixiong/article/details/143034465
版权归原作者 程序员buddha2080 所有, 如有侵权,请联系我们删除。

“Windows下配置Nginx和PHP”的评论:

还没有评论