nginx访问php文件

server {
        listen       80;
        server_name  ctail.top;
        root /data;
        index index.php;
        #location / {
        #       root    /data;
        #        index   index.php;
        #}

        location ~ .php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $DOCUMENT_ROOT$fastcgi_script_name;
            include        fastcgi_params;
        }
    }

  

猜你喜欢

转载自www.cnblogs.com/chentailin/p/12498205.html