将下面代码添加主题 functions.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'; } } 注意,添加完代码后,一定记得去后台把所有页面文件全部重新发布一遍!否则无法访问;