假设我想将/ images /目录移动到图像主机,以便http://example.org/images/foo.png之前的内容变为http://images.example.org/foo.png.
如果我这样做:location / images / {return 301 http://images.example.org $request_uri;,结果是重定向到http://images.example.org/images/foo.png这不是我想要的.
An older question有一个建议使用正则表达式位置的答案,但这似乎是一种矫枉过正.
在没有使用正则表达式的情况下,是否真的没有办法引用$request_uri并将位置前缀切断?似乎是一个明显的特征.
最佳答案
原文链接:https://www.f2er.com/nginx/435155.html