13432878738 发表于 2016-12-25 07:23:02

nginx+php+ci

配置文件备忘:
                location / {
                     indexindex.php;
                     if (!-e $request_filename) {
                         rewrite^/(.*)$/index.php/$1last;
                         break;
                     }
               }


                location ~ .+\.php($|/) {
                     set $script    $uri;
                     set $path_info"/";
                     if ($uri ~ "^(.+\.php)(/.+)") {
                         set $script   $1;
                         set $path_info$2;
                      }
                           
                     fastcgi_pass 127.0.0.1:9000;
                     fastcgi_indexindex.php;
                     include fcgi.conf;
                     fastcgi_param PATH_INFO $path_info;
                     fastcgi_param SCRIPT_FILENAME$document_root/$script;
                     fastcgi_param SCRIPT_NAME $script;
               }
页: [1]
查看完整版本: nginx+php+ci