Wordpres page页面默认是没有后缀的,通常是以http://xx.com/page/的形式,从SEO的角度出发,给每个page地址添加html后缀更有利于收录的。将下面代码扔到主题function.php里。
// 页面链接添加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';
}
}
