在 NGINX 中通过屏蔽目标 URL 进行重定向

在 NGINX 中通过屏蔽目标 URL 进行重定向

我在 NGINX 上设置了重定向这个答案现在我想要一个设置它以屏蔽用户的重定向,即保留原始内容example.com

我尝试过的事情:

改写

server{
    server_name .example.com;
    rewrite ^/$ www.lokki.newdomain.com/resources/index.html permanent;
}

代理密码

server{
    server_name .example.com;
    location / {
        proxy_pass www.lokki.newdomain.com/resources/index.html;
        proxy_set_header Host      $host;
        proxy_set_header X-Real-IP $remote_addr;
      }
}

但都没有起作用。

有什么建议我做错了吗?

环境:AWS EC2 AMI Linux,nginx 1.16.1

相关内容