如何在 proxy_pass 中指定 url 路径。下面是 nginx 配置文件
location / {
proxy_pass http://www.example.com/
}
url http://www.example.com/将动态重定向到http://www.example.com/image/file.aspx?img=1
如何指定一个内部重定向到另一个 url 的 url。对此的任何帮助都会非常有帮助
如何在 proxy_pass 中指定 url 路径。下面是 nginx 配置文件
location / {
proxy_pass http://www.example.com/
}
url http://www.example.com/将动态重定向到http://www.example.com/image/file.aspx?img=1
如何指定一个内部重定向到另一个 url 的 url。对此的任何帮助都会非常有帮助
试试 nginx HttpRewriteModule,你不需要这些(tho)的代理。它遵循以下格式:
rewrite regex replacement flag
| | | |
rewrite ^/ http://www.example.com/image/file.aspx?img=1 permanent;
然后:
location / {
rewrite ^/ http://www.example.com/image/file.aspx?img=1 permanent;
}