http://example.com:8000/image/ -> https://example1.com/
How to write such a redirect? I triedrewrite ^(/image)$ https://example1.com/ permenantThe result is redirected to https://example1.com/image/
rewrite ^(/image)$ https://example1.com/ permenant
https://example1.com/image/
server { listen 8000; ... location = /image/ { proxy_pass https://example1.com/; } }
If you use openresty, you can take a look at this /a/1190000004680996
If you use openresty, you can take a look at this /a/1190000004680996