简而言之就是将 localhost/a.com/page.html 代理 a.com/page.html
而且 a.com 是不确定的,无法列出。
1
gzlock 2015-09-17 20:57:06 +08:00 1
location / {
proxy_pass http://localhost/$host/; # example: http://a.com/index.html ===> http://localhost/a.com/index.html proxy_set_header Host $host; } 完事 |