Wordpres 给page页面地址添加html后缀
Wordpres page页面默认是没有后缀的,通常是以http://xx.com/page/的形式,从SEO的角度出发,给每个page地址添加html后缀更有利于收录的。将下面代码扔到主题function.php里。
1 2 3 4 5 6 7 8 | // 页面链接添加html后缀 add_action('init', 'html_page_permalink', -1); function html_page_permalink() { global $wp_rewrite; if ( !strpos($wp_rewrite->get_page_permastruct(), '.html')){ $wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html'; } } |
这时还不会生效,重新设置一下固定链接。就可以了。