0
我這樣做重定向:編碼和在header()函數
$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';
TY
第一個。在瀏覽器中試用它們,只有其中一個會將獲取值傳遞給腳本。 –