nginx域名跳转问题
发布网友
发布时间:2022-04-19 23:20
我来回答
共1个回答
热心网友
时间:2023-09-27 19:36
rewrite 的话 地址栏会变化的。如果要不变化,只能用proxy的方式。
location / {
root html/htdocs;
index index.html index.htm;
proxy_pass http://www.a.com/f.php
;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
请采纳。追问这样设置过了,不可以的,相当于我想设置http://www.a.com/所有错误url的字符串都跳转到f.php,并且正常请求不受影响