centos nginx php錯誤的解決方法:1、分析是否安裝了php-fpm,如果沒有就安裝php-fpm;2、修改nginx.conf檔案或default.conf;3、儲存檔案並重新啟動nginx即可。
本文操作環境:centOS6.8系統、PHP7.1版,DELL G3電腦
如何解決centos nginx php錯誤問題?
CentOS6.10 Nginx無法解析php檔案
#nginx 已經安裝完畢,並且能夠存取
當存取.php 檔案時會預設下載,或提示「File not found.”
PHP 版本: # php -v PHP 5.3.3 (cli) (built: Mar 22 2017 12:27:09) Copyright (c) 1997-2010 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
Nginx 版本:[root@bogon sbin]# ./nginx -v nginx version: nginx/1.11.6
##可以執行指令service php-fpm start
,如果顯示無法識別,說明沒有安裝
2). 如果沒有安裝php-fpm可以執行安裝指令:
然後再執行指令
service php-fpm start
3). 如果已經安裝了php-fpm 並且還是無法解析.php 檔案
(1). 修改nginx.conf 檔案或default.conf ,如下圖所示,修改其中幾處資訊。如「root」指的是我的nginx 根目錄,可根據自己的情況進行配置######################(2). 儲存文件,並重啟nginx,命令:###service nginx restart### (3). 此時,瀏覽器訪問.php檔案即可(如果不是本機訪問,請注意關閉防火牆)########### #server{ listen 80; server_name app-hpoption-admin-test.azfaster.com; root /data/wwwroot/blog/public; charset utf-8; location / { index index.php index.html ; try_files $uri $uri/ /index.php?$query_string; } #location ~ .php$ { # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /var/www/test/public$fastcgi_script_name; # include fastcgi_params; #} location ~ .*\.(php|php5)?$ { # fastcgi_pass unix:/dev/shm/php-cgi.sock; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /data/wwwroot/blog/public$fastcgi_script_name; include fastcgi_params; } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }###推薦學習:《###PHP影片教學###》###### ####
以上是如何解決centos nginx php錯誤問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!