Node JS http-proxy - 创建的问题 URL

Node JS http-proxy - issue with created URL

我在 node JS 中创建了简单的代理服务器,它看起来像这样:

var httpProxy = require('http-proxy');

var proxy = httpProxy.createProxyServer({});

//proxy config
app.all('/proxy/*', function (request, response) {
    "use strict";
    return proxy.web(request, response, {
    target: 'http://localhost:1234/'
    });
});

我遇到的问题是它从示例请求创建代理 URL:

$http.get('/proxy/example')
        .success( function(res) {
          $scope.quote = res;
          alert($scope.quote);
          })

看起来像这样:

localhost:1234/proxy/example

但我希望它创建 URL 看起来像这样:

localhost:1234/example

我做错了什么?

PS 对不起,如果问题格式不正确或太简单 - 这是我在堆栈上的第一个问题

不要做 /proxy/example 而是只写例子

   $http.get('example')
    .success( function(res) {
      $scope.quote = res;
      alert($scope.quote);
      })