nginx支持php配置

 

location / {
root /wwwroot/phptest;
index index.html index.htm index.php;
}

location ~ \.(php|php5)$ {
root /wwwroot/phptest;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /wwwroot/phptest$fastcgi_script_name;
include fastcgi_params;
}

nginx支持php配置,布布扣,bubuko.com

nginx支持php配置

上一篇:webview相关链接


下一篇:javascript . 03 函数定义、函数参数(形参、实参)、函数的返回值、冒泡函数、函数的加载、局部变量与全局变量、隐式全局变量、JS预解析、是否是质数、斐波那契数列