nginx 服务器的 URL 屏蔽

nginx 服务器的 URL 屏蔽

我有 nginx 服务器。我尝试将 .biz 域名重定向到 .com,但 URL 只能是 .biz。

我尝试了很多重定向规则,但不起作用。

我的 .com 域名已经上线。我想搜索 .biz 域名,但页面应该与 .com 相同

答案1

您是否尝试过nginx 重写模块? 类似这样的方法就可以了

server {
    listen <ip.address>:<port>
    server_name <domain>.biz
    location / {
        rewrite ^https://<domain>.biz/(.*)$ https://<domain>.com/$1
    }
}

相关内容