即時通訊努力找到一種方法來重定向wordpress頁面隨機預定義的url列表。WordPress的頁面php重定向
每個URL是原域的子域,因此:
page1.homepage.com,page2.homepage.com,page3.homepage.com
我知道這個代碼之前應該出現我做的doctype。
現在由於某種原因,我不能得到它的工作!任何幫助將非常感激!
這裏是我的代碼:
$urls = array('http://1.home.com','http://2.home.com','http://3.home.com');
$random_value = array_rand($urls);
$random_link = $urls[$random_value];
("location: $random_link")
'header(「Location:$ random_link」);'http://php.net/manual/en/function.header.php – dbarthel