1

修改node-http-proxy 示例时...

问题: 手动更改req.headers.host为远程主机('example.com')时,浏览器中的 url 没有改变。

注意:我认为这是可行的,但是当使用 google.com 作为我的示例时,事实证明 google 正在检测代理并更改主机。

问题:有没有办法每次都将浏览器中的 url 更改为远程主机(即 example.com)?谢谢!

var util = require('util'),
    colors = require('colors'),
    http = require('http'),
    httpProxy = require('../../lib/node-http-proxy');

//
// Http Server with proxyRequest Handler and Latency
//
var proxy = new httpProxy.RoutingProxy();
http.createServer(function (req, res) {
  req.headers.host = 'example.com'; // manually setting example.com
  var buffer = httpProxy.buffer(req);
  setTimeout(function () {
    proxy.proxyRequest(req, res, {
      port: 80,
      host: 'example.com',
      buffer: buffer
    });
  }, 200);
}).listen(8004);



util.puts('http server '.blue + 'started '.green.bold + 'on port '.blue + '8004 '.yellow + 'with proxyRequest handler'.cyan.underline + ' and latency'.magenta);
util.puts('http server '.blue + 'started '.green.bold + 'on port '.blue + '9000 '.yellow);
4

1 回答 1

0

一些可以做到这一点的解决方案是:

  • 发出 301 重定向。
  • 使用 IPTables 到 DNAT 并更改目标地址。
  • 使用 TPROXY 透明地代理请求而不修改数据包。
于 2013-07-01T16:25:33.787 回答