我正在尝试将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;
}
}
我该怎么做才能重定向到指定目录?