我有一个带有单个index.html的域名 这是我的Nginx服务器+ php5-fpm
的设置server {
listen 80;
root /var/www/ecuation/fussball/app/;
index index.html;
server_name fussball.*******.com;
location / {
try_files $uri $uri.html $uri/index.html index.html;
}
location ~ \.(php|html|htm)$ {
root html;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.html;
include fastcgi_params;
}
}
但是,当我浏览网址时,它会向我显示HTML代码,它会执行它。 它可能是什么?