如何解決php輸入框顯示源代碼?
這種情況一般是服務器配置的問題,比如nginx沒有打開php的模塊,或者沒有安裝php
一般找到nginx.conf把php那塊前面的注釋去掉,重啟就行
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
#fastcgi_pass 127.0.0.1:9000;
fastcgi_pass unix:/home/php7/var/run/php-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
--------河南新華
上一篇什么是純語言編程