У меня есть два титула в WordPress:
post_title: gröband permalink: www.example.com/groband.html post_title: groband permalink: www.example.com/groband-2.html
Я хочу перенаправить, когда поисковый запрос « gröband
» на www.example.com/groband.html
если поисковый запрос « groband
» перенаправляется на www.example.com/groband-2.html
Измените шаблон поиска в редакторе тем и добавьте этот верх
<?php if(isset($_GET['s'])){ $url =""; switch($_GET['s']){ case 'gröband': $url = "http://www.example.com/groband.html"; break; case 'groband': $url = "www.example.com/groband-2.html"; break; } if(!empty($url)){ header("Location: ".$url); } } ?>
или
<?php if(isset($_GET['s'])){ switch($_GET['s']){ case 'gröband': header("Location:http://www.example.com/groband.html"); break; case 'groband': header("Location:http://www.example.com/groband-2.html"); break; } } ?>