In <1045314378.10287.7.camel@goofy>, Vicky Byford <[EMAIL PROTECTED]> writes: > I have a virtual host that I use analog 5.30 to generate reports for. > Within the Referrer Report, the some pl scripts within the cgi-bin > directory are shown to be where people hae been referred from i.e. > http://www.vhost.com/cgi-bin/endir/name.pl. How do I exclude the whole > of the cgi-bin directory from showing within this report? I have > individually tried: > > FILEEXCLUDE /cgi-bin/* > FILEEXCLUDE cgi-bin/* > REFEXCLUDE /cgi-bin/* > REFEXCLUDE cgi-bin/*
The referrer includes the scheme and hostname, so if your servername is www.example.com, you would need REFEXCLUDE http://www.example.com/cgi-bin/* REFEXCLUDE http://www.example.com:80/cgi-bin/* (rare but you may see some of these entries, too) REFEXCLUDE https://www.example.com/cgi-bin/* (if your server can be reached over SSL) If your server has multiple names, you need to exclude those as well, e.g. REFEXCLUCE http://example.com/cgi-bin/* REFEXCLUDE http://10.1.1.1/cgi-bin/* -- Klaus Johannes Rusch [EMAIL PROTECTED] http://www.atmedia.net/KlausRusch/ +------------------------------------------------------------------------ | TO UNSUBSCRIBE from this list: | http://lists.isite.net/listgate/analog-help/unsubscribe.html | | Digest version: http://lists.isite.net/listgate/analog-help-digest/ | Usenet version: news://news.gmane.org/gmane.comp.web.analog.general | List archives: http://www.analog.cx/docs/mailing.html#listarchives +------------------------------------------------------------------------
