如何正确配置 Nginx + PHP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何正确配置 Nginx + PHP相关的知识,希望对你有一定的参考价值。
参考技术A 1. php用php-fpm启动,然后nginxlocation ~ \.php$
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
这样就可以了
2.安装一个集成的软件phpstudy 参考技术B php用php-fpm启动,然后nginx
location ~ \.php$
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
这样就可以了本回答被提问者采纳
以上是关于如何正确配置 Nginx + PHP的主要内容,如果未能解决你的问题,请参考以下文章