我的php脚本无法正常执行同样的文件html代码
<?php echo "testing"; ?><html><body>Testing1</body></html>
以下代码写了Testing1和php代码没有被执行
我的php的nginx配置是
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
我也更改了根目录
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/sp/Desktop/mikz;
index index.html index.htm index.php index.py;
# Make site accessible from http://localhost/
server_name 10.10.10.51;
}
答案 0 :(得分:0)
文件扩展名是什么,是保存为.php还是.html?
如果.html请将其更改为.php以使其正常工作。