【发布时间】:2021-01-14 00:35:11
【问题描述】:
我有一个 url - https://sambit.com/hub/abc 我想重定向到 https://sambit.com/admin/sites/editors/hub-page/abc/live-preview 其中 abc 是一个变量值。
我写了一个这样的nginx配置 -
location /hub { rewrite ^/hub(.*)$ https://iwillonlytestit.replica.bangthetable.in/admin/sites/editors/hub-page/$1/live-preview permanent; }
但它似乎没有重定向到我想要的网址。
它重定向到https://sambit.com/admin/sites/editors/hub-page/.*/live-preview。
有人可以帮帮我吗?
【问题讨论】:
标签: nginx redirect nginx-reverse-proxy nginx-location nginx-config