thinkphp3.2 在 nginx 下的配置

server
    {
        listen 80;
        #listen [::]:80;
        server_name XXX.com;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /usr/share/nginx/html/XXX;
        location / {
          if (!-e $request_filename) {
           rewrite  ^(.*)$  /index.php?s=$1  last;
           break;
          }
       }
        location ~ \.php {
          #fastcgi_pass 172.17.0.5:9000;
          fastcgi_pass 172.17.0.5:9000;
          fastcgi_index index.php;
          include fastcgi_params;
          set $real_script_name $fastcgi_script_name;
          if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
              set $real_script_name $1;
              #set $path_info $2;
           }
        fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
        fastcgi_param SCRIPT_NAME $real_script_name;
        #fastcgi_param PATH_INFO $path_info;
        }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }php

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }
 
    }css

 

ps:html

安裝lnmp一鍵安裝包
wget -c http://soft.vpser.net/lnmp/lnmp1.3-full.tar.gz && tar zxf lnmp1.3-full.tar.gz && cd lnmp1.3-full && ./install.sh lnmpnginx

相關文章
相關標籤/搜索