使Nginx支援ThinkPHP架構_PHP教程

來源:互聯網
上載者:User
最近在將公司的一台的伺服器從Apache遷移到Nginx的時候出了點問題,特做個筆記。
問題出在上面的一個網站是基於ThinkPHP架構開發的,用預設的方法配置不行。在網上baidu之後發現這個問題很普遍,通用解決方案的配置如下:
server {
...
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_param PATH_INFO $path_info;
fastcgi_param SCRIPT_FILENAME /path/to/web-root$script;

}


昨天在看書的時候突然發現,原來fastcgi模組內建了一個指令專門用來解決此類問題的,該指令是fastcgi_split_path_info ,該指令會根據給定的Regex來分隔URL,從而提取出指令碼名和path info資訊,使用這個指令可以避免使用if語句,配置更簡單。(server部分的if語句可以用try_files來代替),新的配置如下:
server {
...
try_files $uri /index.php$uri;
}

location ~ .+\.php($|/) {
....
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME /path/to/web-root$fastcgi_script_name;

}

http://www.bkjia.com/PHPjc/477891.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477891.htmlTechArticle最近在將公司的一台的伺服器從Apache遷移到Nginx的時候出了點問題,特做個筆記。 問題出在上面的一個網站是基於ThinkPHP架構開發的,用默...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.