我是Magento的新手,我们需要将我们网站的主页重定向到类别页面的目标网页,具体取决于客户的历史记录:
我们有两类男士和女士:
当客户打开我们的网站时,我们会将他重定向到女性类别。 如果客户打开男性类别,那么下次打开我们的网站会将他重定向到男性登陆页面。
像这个网站:https://www.zalando.co.uk/men-home/
感谢帮助我做到这一点。
答案 0 :(得分:0)
就像这样
if( $_SESSION['gender'] == "male"){
header('Location: category.php=male');
}else{
header('Location: category.php=female');
}