链接形式http://localhost/?go=http://www.baidu.com这种形式转跳的方法。
PHPcode5">add_action('wp_head','gourl');function gourl() { global $pagenow; if (is_home && $pagenow == 'index.PHP') { $location = $_GET['go']; if ($location != "") { wp_redirect(esc_url_raw($location),302); exit; } }} 原文链接:https://www.f2er.com/wordpress/15264.html