我想将所有流量重定向example.com
到test.example.com
,并为此编写了以下规则:
server {
server_name example.com; # change to match your URL
return 301 $scheme://test.example.com$request_uri;
}
但它不起作用。
PS:我已经在子域上安装了 SSL 证书。
我想将所有流量重定向example.com
到test.example.com
,并为此编写了以下规则:
server {
server_name example.com; # change to match your URL
return 301 $scheme://test.example.com$request_uri;
}
但它不起作用。
PS:我已经在子域上安装了 SSL 证书。