Nginx 域名到子域名重定向

Nginx 域名到子域名重定向

我想将所有流量重定向example.comtest.example.com,并为此编写了以下规则:

server {
  server_name example.com; # change to match your URL
  return 301 $scheme://test.example.com$request_uri;
}

但它不起作用。

PS:我已经在子域上安装了 SSL 证书。

相关内容