NGINX 代理传递除主页之外的所有 URL

NGINX 代理传递除主页之外的所有 URL

我正在尝试设置一个代理,以便从远程服务器获取除主页之外的所有页面。目前我有这个使用代理服务器 404 页面的配置。我需要在不同的服务器上运行 2 个站点,一个站点只提供主页,而另一个站点将提供所有其他页面。两个站点都运行 wordpress

    server {

    listen 8080;
    server_name        example.com;

    location = / { 
        index               index.html index.php;
        root                /var/www/example.com;
    }

    location / { 
        access_log off;
        proxy_pass http://213.21.232.23;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

    }

相关内容