从…起WPEngineer (带编辑):
将以下内容添加到函数中。主题中的php:
function fb_change_search_url_rewrite() {
if ( is_search() && ! empty( $_GET[\'s\'] ) ) {
wp_redirect( home_url( "/busca/?s=" ) . urlencode( get_query_var( \'s\' ) ) );
exit();
}
}
add_action( \'template_redirect\', \'fb_change_search_url_rewrite\' );
将以下内容添加到htaccess文件中:
RewriteCond %{QUERY_STRING} ^s=(.*)$ [NC]
RewriteRule ^$ /busca/%1 [NC,QSA,L]
Note: Code is untested
Edit: Minor modifications made to answer the question more thoroughly