nginx php7配置

 1,在nginx.conf 文件中添加

include vhosts/*.conf; 

2,在vhosts文件夹中新建 www.dome.com.conf文件 ,配置内容如下:

server {
    listen       80;
    server_name  www.test.com;
    root d:/server/www;
 
    location / {
        index  index.php index.html index.htm;
        if (!-e $request_filename) {
           rewrite  ^(.*)$  /index.php?s=/$1  last;
           break;
        }
    }
 
    error_page   500 502 503 504  /50x.html;
 
    location = /50x.html {
        root   html;
    }
 
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_read_timeout 150;
        fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
        fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }
}

猜你喜欢

转载自www.cnblogs.com/longqin/p/11613937.html