Redirect When Search Query is an Exact Title in Wordpress
问题 I have two post titles in Wordpress: post_title: gröband permalink: www.example.com/groband.html post_title: groband permalink: www.example.com/groband-2.html I want redirect when search query is " gröband " to www.example.com/groband.html if search query is " groband " redirect to www.example.com/groband-2.html 回答1: Edit your search template in theme editor and add this top <?php if(isset($_GET['s'])){ $url =""; switch($_GET['s']){ case 'gröband': $url = "http://www.example.com/groband.html"