1、完全url的域名隐性跳转
server_name a.b.com
location / {
proxy_pass http://x.y.com;
}
效果:浏览器地址栏中输入a.b.com域名不变访问的内容为x.y.com上的内容
2、部分url的域名隐性跳转到非根目录下的内容
server_name a.b.com
location ~ .*\.(js|css)$ {
rewrite ^/(.*) /js/$1 break;
proxy_pass http://x.y.com break;
}
效果:浏览器地址栏中输入a.b.com域名不变其实访问的内容是x.y.com/js/下的内容。
时间: 2024-10-04 19:02:57