in reply to Re: blocking naughty referrers
in thread blocking naughty referrers
#!/usr/bin/perl if ( defined $ENV{'HTTP_REFERER'} and $ENV{'HTTP_REFERER'} =~ /dumdomain\.com/ ) { print "Location: http://www.anotherpage.com\n\n"; exit(0); } print "Content-type: text/html\n\n"; ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: blocking naughty referrers
by snafu (Chaplain) on May 14, 2001 at 19:38 UTC | |
|
Re: Re: Re: blocking naughty referrers
by mishko (Initiate) on May 15, 2001 at 05:09 UTC | |
by dws (Chancellor) on May 15, 2001 at 05:21 UTC |