我正在使用此页面(http://wiki.nginx.org/WordPress)在nginx/php fpm服务器上设置我的WordPress。
一切都很好,除了404
页
当我请求www.example时。com/foo,它向我发送了默认的nginx 404未找到页面,我已经设置了以下内容,但运气不好配置:
fastcgi_intercept_errors on;
error_page 404 /index.php?error=404;
我尝试添加一些代码(例如die(“wordpress”);)在插件中,当我请求此页面时
the request is handled by wordpress already, 但它不能使用404。默认模板中的php。
有人能帮忙吗?