nginx php file not found

来源:互联网 发布:预约挂号系统php源码 编辑:程序博客网 时间:2024/05/24 00:17

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

 location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;

    #找到fastcgi_param改成如下所示
            fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html$fastcgi_script_name;
            include        fastcgi_params;
}

0 0
原创粉丝点击