我在我的 centos VPS 上创建了 LEMP
我的问题是,当我运行 php 脚本时,部分脚本显示为文本并且不起作用。
附图:
我的 nginx 配置:
server {
listen 80;
server_name example.com www.example.com;
location /phpmyadmin {
root /home/sites/example.com/phpmyadmin/phpMyAdmin;
index index.html index.htm index.php;
}
location / {
root /home/sites/example.com;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
root /home/sites/example.com;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}}
答案1
您已禁用 PHP short_open_tag (
找到你的 php.ini 文件
php -i | grep php.ini
在该文件中找到 short_open_tag 并将其设置为 On
short_open_tag=On