我想将http://example.com/SomeThing重定向到http://example.com/something
有些东西是Nginx位置(/ something)目录
请建议如何实现不区分大小写的目录位置重定向
最佳答案
我假设http://example.com/something不会被重定向.因此,使用与^〜修饰符区分大小写的匹配的前缀位置来跳过检查正则表达式:
原文链接:https://www.f2er.com/nginx/434851.htmllocation ^~ /something {
return 200 "case sensitive something match
";
}
location ~* ^/something {
return 301 $scheme://$host/something;
}