私はこのリダイレクトを行っています:
$perf = get_query_var('goperf');
$campaignid = get_option('campaign_id');
$url = 'http://ww.mysite.com?test=1&testtwo=2';
header("HTTP/1.1 301 Moved Permanently");
header('Location: '.$url);
exit;
私は使用する必要があります:
$url = 'http://ww.mysite.com?test=1&testtwo=2';
または、& をエンコードする必要がありますか? & の代わりに & を使用する
$url = 'http://ww.mysite.com?test=1&esttwo=2';
タイ