千家信息网

PHP与nginx整合

发表于:2025-12-02 作者:千家信息网编辑
千家信息网最后更新 2025年12月02日,编辑nginx配置文件并保存vim /usr/local/nginx/conf/nginx.conflocation / {root html;index index.php index.html i
千家信息网最后更新 2025年12月02日PHP与nginx整合

编辑nginx配置文件并保存

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测试页

0