win7配置nginx + php

來源:互聯網
上載者:User

標籤:http   io   ar   os   sp   檔案   on   art   代碼   

在nginx下建立檔案php-cgi.cmd,並寫入內容:

"D:\nginx_php-5.6.3-Win32-VC11-x64\php-cgi.exe" -b 127.0.0.1:9000 -c "D:\nginx_php-5.6.3-Win32-VC11-x64\php.ini"

 

問:電腦中丟失 msvcr110.dll 怎麼辦?

答:百度經驗中找到答案:http://jingyan.baidu.com/article/4f7d57129fa86e1a201927de.html

即:http://www.microsoft.com/zh-CN/download/details.aspx?id=30679中下載VSU4\vcredist_x64.exe並安裝(注意32位和64位)即可解決。

 

問:當運行php檔案時,瀏覽器頁面出現出No input file specified時,怎麼辦

答:在nginx.conf中,行fastcgi_param  SCRIPT_NAME  /scripts$fastcgi_script_name;

把/scripts改為$document_root 即可解決。

 

nginx.conf中幾行核心代碼的配置說明:

     設定項目訪問路徑:

        location / {
           # root   html;        
            root   E:/workspace/solomo/www/test/php_core/; #網站根目錄
            index index.html index.htm index.php; #指定預設首頁
            autoindex on; # 若index項未配置,顯示根目錄下的檔案清單
        }

     配置訪問php檔案:

        location ~ \.php$ {
            root           E:/workspace/solomo/www/test/php_core/;  #網站根目錄
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
           # fastcgi_param  SCRIPT_NAME  /scripts$fastcgi_script_name;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; #當輸出No input file specified時,把/scripts改為$document_root
             include        fastcgi_params;
        }

 

win7配置nginx + php

相關文章

聯繫我們

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