Name

BounceReferralsRobot — remove visible affiliate code from URLs after first access (for robots only)

SYNOPSIS

No | Yes

DESCRIPTION

This directive is similar to BounceReferrals but it takes effect only on URLs accessed by robots.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Enabling BounceReferralsRobot

BounceReferralsRobot yes

NOTES

This is useful for Google Analytics, Omniture SiteCatalyst, and similar analytics that need to see the referrals in the URL, and doesn't hurt anything for most users because redirecting away from the referral is most important for SEO.

AVAILABILITY

BounceReferralsRobot is available in Interchange versions:

5.8.0, 5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 723

['BounceReferralsRobot', 'yesno',        'no'],

Source: lib/Vend/Config.pm
Line 5434 (context shows lines 5434-5446)

sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
  return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
  return 0;
}
else {
  config_error("Use 'yes' or 'no' for the $var directive\n");
}
}

AUTHORS

Jon Jensen

SEE ALSO

DocBook! Interchange!