1月142022
nginx反向代理增加虚拟目录
方法一
location /test/ {
proxy_pass http://127.0.0.1/;
}
方法二
location / {
rewrite /test/(.*) /$1 break;
proxy_pass http://127.0.0.1;
}
方法一
location /test/ {
proxy_pass http://127.0.0.1/;
}
方法二
location / {
rewrite /test/(.*) /$1 break;
proxy_pass http://127.0.0.1;
}
发表评论
木有头像就木JJ啦!还木有头像吗?点这里申请属于你的个性Gravatar头像吧!