wordpress搜索结果url重定向 发表于 2012-06-13 | 分类于 Wordpress学习 | | 阅读次数: | 字数统计: 40 12345678910<?phpif($_GET['s']!=''){ $change = array('+',' '); $kwds = strtolower( $_GET['s'] );$kwds = trim($kwds);$searchredirect = get_settings('home') . '/search/' . str_replace($change, '-' ,$kwds). '/'; header("HTTP/1.1 301 Moved Permanently");header( "Location: $searchredirect" );}?>