动态页面。
样例配置如下:
#cat /usr/local/nginx/conf/nginx.conf
……
server{
listen80;
server_namelocalhost;
location/{
//识别静态页面(除了 PHP外的其他所有页面)
roothtml;
indexindex.html;
}
location~*\.php${
//识别动态页面
roothtml;
fastcgi_pass127.0.0.1:9000;
include fastcgi.conf;
}
}