サイト内のあるページに来た時に、
パラメーターをつけてそのままリダイレクトをかけさせます。
.js
var curURL = document.URL;
if(curURL.match(/information/)){ //URLにinformationがある時に
if(curURL.match(/\?/)){//URLにパラメーターが既についているか判断する。
location.href = curURL + "&test=123"
}else{
location.href = curURL + "?test=123"
}
}