我将我的webserver apache2切换到了centos 7上的nginx,现在主要的index.php显示了一个空白页面,但是wp-admin工作正常。在Web控制台中,我可以看到200响应。我启用了wp调试,但没有运气。这是我的主机文件
server {
root /var/www/html;
index index.php index.html index.htm;
server_name new-site.com;
location = /favicon.ico {
log_not_found off;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
答案 0 :(得分:8)
通过谷歌搜索这么多小时,我得到了解决方案,这是我的工作配置已将include fastcgi_params;
更改为 include fastcgi.conf;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi.conf;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#include fastcgi_params;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
}
}
答案 1 :(得分:0)
这个网站对我有用:new-staging.opploans.com 请尝试清理您的浏览缓存,或者,如果您使用cdn,请清除内容并重试。