解決Nginx部署ThinkPHP項目的辦法

修改nginx 配置文件:

server {

 ...

    location / {

        index  index.htm index.html index.php;

        #訪問路徑的文件不存在則重寫URL轉交給ThinkPHP處理

        if (!-e $request_filename) {

           rewrite  ^/(.*)$  /index.php/$1  last;

           break;

        }

    }

    location ~ \.php/?.*$ {

        root        /var/www/html/website;

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.php;

        #加載Nginx默認"服務器環境變量"配置

        include        fastcgi.conf;

        

        #設置PATH_INFO並改寫SCRIPT_FILENAME,SCRIPT_NAME服務器環境變量

        set $fastcgi_script_name2 $fastcgi_script_name;

        if ($fastcgi_script_name ~ "^(.+\.php)(/.+)$") {

            set $fastcgi_script_name2 $1;

            set $path_info $2;

        }

        fastcgi_param   PATH_INFO $path_info;

        fastcgi_param   SCRIPT_FILENAME   $document_root$fastcgi_script_name2;

        fastcgi_param   SCRIPT_NAME   $fastcgi_script_name2;

    }

}


或者:

server {

 ...

    location / {

        index  index.htm index.html index.php;

        #如果文件不存在則嘗試TP解析

        try_files  $uri  /index.php$uri;

    }

    location ~ .+\.php($|/) {

        root        /var/www/html/website;

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.php;

        

        #設置PATH_INFO,注意fastcgi_split_path_info已經自動改寫了fastcgi_script_name變量,

        #後面不需要再改寫SCRIPT_FILENAME,SCRIPT_NAME環境變量,所以必須在加載fastcgi.conf之前設置

        fastcgi_split_path_info  ^(.+\.php)(/.*)$;

        fastcgi_param  PATH_INFO $fastcgi_path_info;

        

        #加載Nginx默認"服務器環境變量"配置

        include        fastcgi.conf;

    }

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章