Nginx-重定向到特定目录,例如https://example.com/example,不起作用

时间:2019-03-11 17:11:30

标签: http nginx redirect https

我正在尝试将upload.example.com重定向到myuploadserver.example.com/s/example

在浏览器中绑定upload.example.com时,我被带到基本域myuploadserver.example.com而不是我想要的子目录。

这是我的nginx文件:

server {
  listen 8080;

  server_name upload.example.com;

  access_log /data/logs/redirection_host-7.log standard;

  location / {
        return 301 $scheme://myuploadserver.example.com/s/example$request_uri;
  }
}

我该怎么做才能重定向到指定目录?

0 个答案:

没有答案