Kiraly Zoltan wrote: > I use this redirector script for squid proxy. I need to redirect > www.google.com to www.google.com/ncr > > The only problem is because this script redirect www.google.com to -> > www.google.com/ncr/ not www.google.com/ncr , i without / at end.
> #!/usr/local/bin/perl
> $|=1;
> while (<>) {
> [EMAIL PROTECTED]://[EMAIL PROTECTED]://www.google.com/ncr@;
> print;
> }
Try this instead:
[EMAIL PROTECTED]://www.google.com/[EMAIL PROTECTED]://www.google.com/ncr@
Adam
