Nginx PHP支持

Posted Weblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx PHP支持相关的知识,希望对你有一定的参考价值。

nginx 支持 php

server {
server_name www.www1.com www1.com;
location / {
index index.php  index.html;
root  /web/www/www1.com
}
location ~ \.php$ {
root           html;
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
     //    fastcgi_param 放置PHP动态程序的主目录,也是scripts$fastcgi_script_name 前面指定的目录;
include        fastcgi_params;
    //    fastcgi 进程的参数配置文件;
  }
# deny access to .htaccess files,
if Apaches document root # concurs with nginxs one # #location ~ /\.ht { # deny all; #} }

 


以上是关于Nginx PHP支持的主要内容,如果未能解决你的问题,请参考以下文章

让Nginx支持pathinfo

配置 Nginx 支持 PHP 程序请求访问

nginx配置支持php

配置Nginx支持pathinfo模式

简单配置nginx使之支持pathinfo

Eclipse 中的通用代码片段或模板