標籤: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