标签: variables nginx redirect configuration
我尝试使用正则表达式在NGINX服务器中创建重定向。
更具体地说,我想将遵循模式example.com/a/b/c的URL重定向到example.com/b/c。我相信,要做到这一点,我需要将URL的其余部分(在示例/b/c中)保存在变量中。
example.com/a/b/c
example.com/b/c
/b/c
答案 0 :(得分:0)
如果我理解正确,那么您想要实现的目标就是这样
location ~ /somelocation/(.*)$ { return 301 https://example.com/$1; }