我正在尝试使用 Nginx 进行 301 重定向http://something.example.com到http://another.site.com问题是 Nginx 不断添加尾部斜杠,这http://another.site.com不知道如何处理(这个网站不在我的控制范围内)。
Nginx 服务器块
server {
server_name something.example.com;
return 301 http://another.site.com;
}
- 当前重定向结果:http://another.site.com/
- 重定向的预期结果:http://another.site.com
有没有办法禁用尾随斜杠?