我需要将请求代理到不支持CORS的远程服务器,并同时将请求记录到我的数据库中。虽然语法正确,但这并不符合我的要求:
L
现在我无法告诉它在做什么;我没有看到远程服务被调用的迹象,也没有我的本地脚本被调用。
我可以说这不起作用,因为第一条规则没有L
标志,所以Apache继续处理可以匹配的规则。由于第二个标记符号为POST
,因此它会在第二个规则上结算并丢弃第一个规则。
如果重要,数据需要my $fileSrc = 'base58.txt';
open my $fhSrc, $fileSrc or die "Could not open $fileSrc: $!";
my $fileDest = 'hex.txt';
open( my $fhDest, '>>', $fileDest) or die "Could not open file $fileDest: $!";
my @tmp = <$fhSrc>;
chomp @tmp;
for my $line (@tmp) {
print "decoding '$line'\n";
my $binary_address = decodebase58tohex($line);
say $fhDest $binary_address;
}
close $fhSrc;
close $fhDest;
到远程服务器。
有没有办法让Apache进入&#34; tee&#34;请求?