#vim nginx.conf
location ~ .php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $docoument_root$fastcgi_script_name;
include fastcgi_params;
}
注意:启动服务时,可能会提示$docoument_root错误之类的,如果提示,就写全路径/usr/local/nginx/html即可 。
本文转自 Lee_吉 博客,原文链接: http://blog.51cto.com/12173069/2048102 如需转载请自行联系原作者