简体   繁体   English

如何更改wordpress上的搜索永久链接

[英]How to change Search permalink on wordpress

Is it possible to change the Wordpress search permalink from: 是否可以更改Wordpress搜索永久链接:

www.mydomain.com/search/my+result+keyword+term www.mydomain.com/search/my+result+keyword+term

to: 至:

www.mydomain.com/my-result/keyword-term www.mydomain.com/my-result/keyword-term

and to display the search page or any ideas for this. 并显示搜索页面或任何想法。

Thank You. 谢谢。

Open the searchform.php within your theme folder and change the form action. 在主题文件夹中打开searchform.php并更改表单操作。 You can of course even rebuild the whole search form if you like. 如果您愿意,您甚至可以重建整个搜索表单。

The wordpress codex has a usefull tutorial on this topic: http://codex.wordpress.org/Creating_a_Search_Page wordpress codex有一个关于这个主题的有用的教程: http//codex.wordpress.org/Creating_a_Search_Page

It's too late but could help others like me :) 现在为时已晚,但可以帮助像我这样的人:)

Add following code into your functions.php file. 将以下代码添加到functions.php文件中。

function wp_change_search_url() {
    if ( is_search() && ! empty( $_GET['s'] ) ) {
        wp_redirect( home_url( "/search/" ) . urlencode( get_query_var( 's' ) ) );
    }
}
add_action( 'template_redirect', 'wp_change_search_url' );

function wp_search_rule(){
    add_rewrite_rule('^search/([^/]*)?', 'index.php?s=$matches[1]', 'top');
}
add_action( 'init', 'wp_search_rule' );

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM