在Node.js应用程序中重写传入的URL

时间:2016-02-16 04:37:16

标签: node.js

我需要将我的传入URL重写为 传入的URL是

http://localhost:8080/test/bower_components/bootstrap/dist/css/bootstrap.css 

我需要编写一个代理,例如所有以/ test / bower_components开头的url都应该被重写,例如从url中删除/ test。 预期产出是

http://localhost:8080/bower_components/bootstrap/dist/css/bootstrap.css 

我尝试使用此模块connect modrewrite

 app.use(modRewrite([

    '^/email/api/(.*)$ [L]' 

  ]));

0 个答案:

没有答案