尝试在网站上查看特定网址,然后根据该网址向网址添加字符串,然后重定向。我正在搜索子字符串' / product /'所以它需要是动态的〜ish(wordpress multisite,需要在所有网站上工作。
在functions.php中试过这个..不确定如何/何时调用它。
function fancy_redirect() {
$actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
if ( (strpos($actual_link, '/product/') !== false) && (strpos($actual_link, '?start_customizing=yes') === false)) {
header('Location: '. $actual_link . '?start_customizing=yes');
}
}
也在javascript中尝试过,它在控制台中运行但在现场运行时却没有。
window.onload = function() {
if(location.href.search("/product/") !== -1 && location.href.search("/?start_customizing=yes") === -1) {
window.location = (location.href + "?start_customizing=yes");
}
}
答案 0 :(得分:0)
在这个问题上必须同意@wawa。如果您将此功能构建到/ product /的模板中,则可以将用户重定向到相应的URL
header("Location: http://example.com/product/". $new_location);
die();