1、在nginx配置文件(nginx.conf)里 server{ }内增加以下参数设置location ~ \.php${ root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILE...
1、在nginx配置文件(nginx.conf)里 server{ }内增加以下参数设置
location ~ \.php$
{
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/server/nginx/html/$fastcgi_script_name;
include fastcgi_params;
}
2、/www/server/nginx/html 为nginx安装路径,必须对应得上
3、直接复制可能会有 “编码格式“ 问题产生,最好人工逐个字符敲入
4、重启nginx