如何实现WordPress分类目录和页面链接地址以斜杠/结尾

 我来答
ni...o@163.com
2017-10-27 · 超过31用户采纳过TA的回答
知道答主
回答量:74
采纳率:28%
帮助的人:43.7万
展开全部
面介绍3 给niwordpress增加.html缀:
1简单修改固定链接
wordpress自带固定链接改变链接式格式没写能给ni页面访问带困难链接特殊符号 空格包含文固定链接格式:/%postname%.html 文行wo格式/archives/%post_id%.html
2插件实现
单独页面添加.html缀
安装:.html on PAGES 插件实现启用插件需任何设置
类及页面同添加.html缀
安装:.html in category and page url 插件启用插件需要插件设置页面保存设置
需要注意启用插件需要台固定链接设置重新保存设置否则跳404页面功先删除空间根目录.htaccess文件保存自新
另外安装插件能造志页翻页错误…..
3.既插件代码
面代码添加主题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';
}
}
添加需要固定链接设置页面重新保存固定链接设置否则效
述代码适合伪静态固定链接形式使用比:
/%postname%.html
/%post_id%.html
另外同使用给WordPress类目录页面添加斜杠文代码需要该文代码修改:

// 添加斜杠
function nice_trailingslashit($string, $type_of_url) {
if ( $type_of_url != 'single' && $type_of_url != 'page' )
$string = trailingslashit($string);
return $string;
}
add_filter('user_trailingslashit', 'nice_trailingslashit', 10, 2);
排除页面文件否则页面链接.html面自加斜杠
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式