nginx php空白頁 fastcgi

來源:互聯網
上載者:User

今天安裝完nginx 後 發現html頁面能正常瀏覽 但是php檔案的頁面開啟後是一篇空白 看php-fpm日誌 看nginx日誌都沒找到問題

上網搜尋了半天終於解決了,在這做個記錄備忘

網上的一種說法是缺少這麼一句話在nginx的設定檔裡

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

這句話是幹嘛的呢 其實他就是定義php中用到的伺服器變數 也就是$_SERVER

http://wiki.nginx.org/NginxHttpFcgiModule 這個網址下有這麼一句話

This module allows Nginx to interact with FastCGI processes and control what parameters are passed to the process。

其實也就是伺服器像你的處理php的cgi傳遞過去他需要的一些參數,而至少要有下面的兩個參數php才能執行起來

Below is an example of the minimally necessary parameters for PHP:

fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name;

fastcgi_param QUERY_STRING $query_string;

Parameter SCRIPT_FILENAME is used by PHP for determining the name of script to execute, and QUERY_STRING contains the parameters of the request.

所以 我們在沒有定義SCRIPT_FILENAME這個系統變數的時候 php是沒法解釋執行的

這個變數的定義可以寫在nginx的設定檔nginx.conf裡 也可以寫在外部 用include的方式在nginx.conf裡包含進來。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.