http://example.com:8000/image/ -> https://example1.com/
How to write such a redirect?
I triedrewrite ^(/image)$ https://example1.com/ permenant
The result is redirected to https://example1.com/image/
迷茫2017-05-16 17:20:16
server {
listen 8000;
...
location = /image/ {
proxy_pass https://example1.com/;
}
}