PHP与nginx整合

编辑nginx配置文件并保存

网站的建设创新互联专注网站定制,经验丰富,不做模板,主营网站定制开发.小程序定制开发,H5页面制作!给你焕然一新的设计体验!已为办公空间设计等企业提供专业服务。

vim /usr/local/nginx/conf/nginx.conf

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;

        }

编辑PHP主页test文件并保存

vim .//index.php

echo phpinfo();

?>

在你的浏览器中输入 URL: http://在页面中查看php测试页


本文题目:PHP与nginx整合
网址分享:http://ybzwz.com/article/gspggd.html