欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx+php+ci 博客分类: php  

程序员文章站 2024-03-19 21:58:04
...
配置文件备忘:
                location / {
                     index  index.php;
                     if (!-e $request_filename) {
                         rewrite  ^/(.*)$  /index.php/$1  last;
                         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_index  index.php;
                     include fcgi.conf;
                     fastcgi_param PATH_INFO $path_info;
                     fastcgi_param SCRIPT_FILENAME  $document_root/$script;
                     fastcgi_param SCRIPT_NAME $script;
                 }