|
- #!/usr/bin/perl -wl
- $|=1; # don't buffer the output
- while (<>) {
- ($uri,$client,$ident,$method) = ( );
- ($uri,$client,$ident,$method) = split;
- next unless ($uri =~ m,^http://.*\.squid-cache\.org(\S*),);
- $uri = "http://www1.au.squid-cache.org$1";
- } continue {
- print "$uri";
- }
复制代码
我做squid反向多backend server时候碰到个问题..我不会用perl去写redirector
虽然可以看懂..但是选择不会写...上面是一个redirector的范例....
怎么把他改成选择句
上面的意思是 httpd包头符合squid-cache.org的 把目标改写成http://www1.au.squid-cache.org 这个地址去请求cache....那位前辈:help :help :help :help :help |
|