这很简单。只需添加此挂钩template_redirect
操作,它会将您的搜索查询重定向到nice url:
function wpse8170_search_url_redirect() {
if ( is_search() && !empty( $_GET[\'s\'] ) ) {
wp_redirect( home_url( "/something/" . urlencode( get_query_var( \'s\' ) ) ) );
exit;
}
}
add_action( \'template_redirect\', \'wpse8170_search_url_redirect\' );
添加到您的
.htaccess
文件:
# search redirect
# this will take anything in the query string, minus any extraneous values, and turn them into a clean working url
RewriteCond %{QUERY_STRING} \\\\?s=([^&]+) [NC]
RewriteRule ^$ /search/%1/? [NC,R,L]