Apache SSI 包括和节点

Apache SSI includes and node

我有 apache 运行,它被配置为服务于一些 SSI 包含,如果应用程序是通过 Apache 部署的,它一切正常,但是我想同时部署一个节点测试服务器Apache 了解 SSI 包含。这可能吗?

我有一个解决方法,即在前端将 SSI 包含作为 JSON 对象加载,但我希望 SSI 包含在服务器级别进行处理。

我最终使用了节点请求

https://www.npmjs.com/package/request

var request = require('request');
request('http://www.google.com', function (error, response, body) {
  console.log('error:', error); // Print the error if one occurred 
  console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received 
  console.log('body:', body); // Print the HTML for the Google homepage. 
});