Apache mod_rewrite代理不返回请求的URL

时间:2015-10-26 17:48:32

标签: apache .htaccess mod-rewrite soap

我有一个主机名为A的服务器,它将SOAP request发送给第三方应用。我还有一个主机名为B的服务器,我希望它在服务器proxy server和第三方应用之间充当A

问题是我认为第三方应用程序没有收到请求导致服务器A没有返回任何内容(false)。

server B .htaccess文件内容:

RewriteEngine On

RewriteCond %{REMOTE_HOST} ^A [NC]
RewriteRule ^ https://example.com/api?wsdl [NC, P]

我的目标是:

  

Server B的行为就像SOAP requestA启动而不是' #include<stdio.h> int insert(int *arr); int display(int *arr); int main() { int MAX=5; int arr[MAX]; insert(arr); display(arr); } int insert(int *arr) { int n,i; printf("Enter how many elements"); scanf("%d",&n); for(i=0;i<n;i++) { printf("Enter value at arr[%d]\n",i); scanf("%d",&arr[i]); } return *arr; } int display(int *arr) { int i; printf("The values are::"); for(i=0;arr[i]!=NULL;i++)//This loop is giving some trouble { printf("\n a[%d]->%d \n",i,arr[i]); } return *arr; } '

0 个答案:

没有答案