nginx – 如何将域名指向另一个网站的页面?

前端之家收集整理的这篇文章主要介绍了nginx – 如何将域名指向另一个网站的页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例如,我在域example.com下有一个网站.在该网站中,我有一个像这个example.com/hello的页面.现在我需要将我的第二个域hello.com指向该页面example.com/hello.它不应该是一个重新指导.访问者应该留在hello.com,但请参阅example.com/hello页面中的内容.这可能吗?我们可以在dns或Nginx中完成吗?

使用代理传递后的访问日志:

  1. 123.231.120.120 - - [10/Mar/2016:19:53:18 +0530] "GET / HTTP/1.1" 200 1598 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.87 Safari/537.36"
  2. 123.231.120.120 - - [10/Mar/2016:19:53:18 +0530] "GET /a4e1020a9f19bd46f895c136e8e9ecb839666e7b.js?meteor_js_resource=true HTTP/1.1" 404 44 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.$
  3. 123.231.120.120 - - [10/Mar/2016:19:53:18 +0530] "GET /9b342ac50483cb063b76a0b64df1e2d913a82675.css?meteor_css_resource=true HTTP/1.1" 200 73 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.262$
  4. 123.231.120.120 - - [10/Mar/2016:19:53:18 +0530] "GET /images/favicons/favicon-16x16.png HTTP/1.1" 200 1556 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.87 Safari/537.36"
  5. 123.231.120.120 - - [10/Mar/2016:19:53:19 +0530] "GET /images/favicons/favicon-96x96.png HTTP/1.1" 200 1556 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.87 Safari/537.36"
  6. 123.231.120.120 - - [10/Mar/2016:19:53:19 +0530] "GET /images/favicons/favicon-32x32.png HTTP/1.1" 200 1556 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.87 Safari/537.36"
  7. 123.231.120.120 - - [10/Mar/2016:19:53:19 +0530] "GET /images/favicons/android-icon-192x192.png HTTP/1.1" 200 1556 "http://swimamerica.lk/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/49.0.2623.87 Safari/537.36"
最佳答案
您可以使用proxy_pass directive.只需创建一个与域hello.com关联的新服务器,然后为location = / set proxy_pass等于http://example.com/hello:

  1. server {
  2. server_name hello.com;
  3. # ...
  4. location = / {
  5. proxy_pass http://example.com/hello/;
  6. }
  7. # serve static content (ugly way)
  8. location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml|RSS|txt)${
  9. proxy_pass http://example.com/hello/$uri$is_args$args;
  10. }
  11. # serve static content (better way,# but requires collection all assets under the common root)
  12. location ~ /static/ {
  13. proxy_pass http://example.com/static/;
  14. }
  15. }

UPD:这是一个适合您情况的精确解决方案:

  1. server {
  2. server_name swimamerica.lk;
  3. location = / {
  4. proxy_pass http://killerwhales.lk/swimamerica;
  5. }
  6. # serve static content (ugly way) - added woff and woff2 extentions
  7. location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml|RSS|txt|woff|woff2)${
  8. proxy_pass http://killerwhales.lk$uri$is_args$args;
  9. }
  10. # added location for web sockets
  11. location ~* sockjs {
  12. proxy_pass http://killerwhales.lk$uri$is_args$args;
  13. }
  14. }

猜你在找的Nginx相关文章